Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
0e647037
Commit
0e647037
authored
Dec 08, 2014
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branches 'spi/topic/spidev' and 'spi/topic/txx9' into spi-next
parents
f56be67b
91690516
7d57cd89
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
5 deletions
+14
-5
drivers/spi/spi-txx9.c
drivers/spi/spi-txx9.c
+1
-2
drivers/spi/spidev.c
drivers/spi/spidev.c
+13
-3
No files found.
drivers/spi/spi-txx9.c
View file @
0e647037
...
...
@@ -402,8 +402,7 @@ static int txx9spi_probe(struct platform_device *dev)
exit:
if
(
c
->
workqueue
)
destroy_workqueue
(
c
->
workqueue
);
if
(
c
->
clk
)
clk_disable
(
c
->
clk
);
clk_disable
(
c
->
clk
);
spi_master_put
(
master
);
return
ret
;
}
...
...
drivers/spi/spidev.c
View file @
0e647037
...
...
@@ -87,6 +87,7 @@ struct spidev_data {
unsigned
users
;
u8
*
tx_buffer
;
u8
*
rx_buffer
;
u32
speed_hz
;
};
static
LIST_HEAD
(
device_list
);
...
...
@@ -138,6 +139,7 @@ spidev_sync_write(struct spidev_data *spidev, size_t len)
struct
spi_transfer
t
=
{
.
tx_buf
=
spidev
->
tx_buffer
,
.
len
=
len
,
.
speed_hz
=
spidev
->
speed_hz
,
};
struct
spi_message
m
;
...
...
@@ -152,6 +154,7 @@ spidev_sync_read(struct spidev_data *spidev, size_t len)
struct
spi_transfer
t
=
{
.
rx_buf
=
spidev
->
rx_buffer
,
.
len
=
len
,
.
speed_hz
=
spidev
->
speed_hz
,
};
struct
spi_message
m
;
...
...
@@ -274,6 +277,8 @@ static int spidev_message(struct spidev_data *spidev,
k_tmp
->
bits_per_word
=
u_tmp
->
bits_per_word
;
k_tmp
->
delay_usecs
=
u_tmp
->
delay_usecs
;
k_tmp
->
speed_hz
=
u_tmp
->
speed_hz
;
if
(
!
k_tmp
->
speed_hz
)
k_tmp
->
speed_hz
=
spidev
->
speed_hz
;
#ifdef VERBOSE
dev_dbg
(
&
spidev
->
spi
->
dev
,
" xfer len %zd %s%s%s%dbits %u usec %uHz
\n
"
,
...
...
@@ -377,7 +382,7 @@ spidev_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
retval
=
__put_user
(
spi
->
bits_per_word
,
(
__u8
__user
*
)
arg
);
break
;
case
SPI_IOC_RD_MAX_SPEED_HZ
:
retval
=
__put_user
(
spi
->
max_
speed_hz
,
(
__u32
__user
*
)
arg
);
retval
=
__put_user
(
spi
dev
->
speed_hz
,
(
__u32
__user
*
)
arg
);
break
;
/* write requests */
...
...
@@ -441,10 +446,11 @@ spidev_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
spi
->
max_speed_hz
=
tmp
;
retval
=
spi_setup
(
spi
);
if
(
retval
<
0
)
spi
->
max_speed_hz
=
save
;
if
(
retval
>=
0
)
spi
dev
->
speed_hz
=
tmp
;
else
dev_dbg
(
&
spi
->
dev
,
"%d Hz (max)
\n
"
,
tmp
);
spi
->
max_speed_hz
=
save
;
}
break
;
...
...
@@ -570,6 +576,8 @@ static int spidev_release(struct inode *inode, struct file *filp)
kfree
(
spidev
->
rx_buffer
);
spidev
->
rx_buffer
=
NULL
;
spidev
->
speed_hz
=
spidev
->
spi
->
max_speed_hz
;
/* ... after we unbound from the underlying device? */
spin_lock_irq
(
&
spidev
->
spi_lock
);
dofree
=
(
spidev
->
spi
==
NULL
);
...
...
@@ -650,6 +658,8 @@ static int spidev_probe(struct spi_device *spi)
}
mutex_unlock
(
&
device_list_lock
);
spidev
->
speed_hz
=
spi
->
max_speed_hz
;
if
(
status
==
0
)
spi_set_drvdata
(
spi
,
spidev
);
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment