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
77cda4b9
Commit
77cda4b9
authored
Oct 17, 2022
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge existing fixes from spi/for-6.1 into new branch
parents
9abf2313
6a43cd02
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
6 deletions
+11
-6
drivers/spi/spi-aspeed-smc.c
drivers/spi/spi-aspeed-smc.c
+2
-2
drivers/spi/spi-gxp.c
drivers/spi/spi-gxp.c
+1
-1
drivers/spi/spi-intel.c
drivers/spi/spi-intel.c
+1
-1
drivers/spi/spi-mpc52xx.c
drivers/spi/spi-mpc52xx.c
+1
-1
drivers/spi/spi-tegra210-quad.c
drivers/spi/spi-tegra210-quad.c
+5
-0
include/linux/spi/spi-mem.h
include/linux/spi/spi-mem.h
+1
-1
No files found.
drivers/spi/spi-aspeed-smc.c
View file @
77cda4b9
...
...
@@ -1163,7 +1163,7 @@ static const struct aspeed_spi_data ast2500_spi_data = {
static
const
struct
aspeed_spi_data
ast2600_fmc_data
=
{
.
max_cs
=
3
,
.
hastype
=
false
,
.
mode_bits
=
SPI_RX_QUAD
|
SPI_
R
X_QUAD
,
.
mode_bits
=
SPI_RX_QUAD
|
SPI_
T
X_QUAD
,
.
we0
=
16
,
.
ctl0
=
CE0_CTRL_REG
,
.
timing
=
CE0_TIMING_COMPENSATION_REG
,
...
...
@@ -1178,7 +1178,7 @@ static const struct aspeed_spi_data ast2600_fmc_data = {
static
const
struct
aspeed_spi_data
ast2600_spi_data
=
{
.
max_cs
=
2
,
.
hastype
=
false
,
.
mode_bits
=
SPI_RX_QUAD
|
SPI_
R
X_QUAD
,
.
mode_bits
=
SPI_RX_QUAD
|
SPI_
T
X_QUAD
,
.
we0
=
16
,
.
ctl0
=
CE0_CTRL_REG
,
.
timing
=
CE0_TIMING_COMPENSATION_REG
,
...
...
drivers/spi/spi-gxp.c
View file @
77cda4b9
// SPDX-License-Identifier: GPL-2.0
=
or-later
// SPDX-License-Identifier: GPL-2.0
-
or-later
/* Copyright (C) 2022 Hewlett-Packard Development Company, L.P. */
#include <linux/iopoll.h>
...
...
drivers/spi/spi-intel.c
View file @
77cda4b9
...
...
@@ -114,7 +114,7 @@
#define ERASE_OPCODE_SHIFT 8
#define ERASE_OPCODE_MASK (0xff << ERASE_OPCODE_SHIFT)
#define ERASE_64K_OPCODE_SHIFT 16
#define ERASE_64K_OPCODE_MASK (0xff << ERASE_OPCODE_SHIFT)
#define ERASE_64K_OPCODE_MASK (0xff << ERASE_
64K_
OPCODE_SHIFT)
/* Flash descriptor fields */
#define FLVALSIG_MAGIC 0x0ff0a55a
...
...
drivers/spi/spi-mpc52xx.c
View file @
77cda4b9
...
...
@@ -151,7 +151,7 @@ mpc52xx_spi_fsmstate_idle(int irq, struct mpc52xx_spi *ms, u8 status, u8 data)
int
spr
,
sppr
;
u8
ctrl1
;
if
(
status
&&
(
irq
!=
NO_IRQ
)
)
if
(
status
&&
irq
)
dev_err
(
&
ms
->
master
->
dev
,
"spurious irq, status=0x%.2x
\n
"
,
status
);
...
...
drivers/spi/spi-tegra210-quad.c
View file @
77cda4b9
...
...
@@ -1157,6 +1157,11 @@ static int tegra_qspi_combined_seq_xfer(struct tegra_qspi *tqspi,
msg
->
actual_length
+=
xfer
->
len
;
transfer_phase
++
;
}
if
(
!
xfer
->
cs_change
)
{
tegra_qspi_transfer_end
(
spi
);
spi_transfer_delay_exec
(
xfer
);
}
ret
=
0
;
exit:
msg
->
status
=
ret
;
...
...
include/linux/spi/spi-mem.h
View file @
77cda4b9
...
...
@@ -225,7 +225,7 @@ static inline void *spi_mem_get_drvdata(struct spi_mem *mem)
/**
* struct spi_controller_mem_ops - SPI memory operations
* @adjust_op_size: shrink the data xfer of an operation to match controller's
* limitations (can be alignment o
f
max RX/TX size
* limitations (can be alignment o
r
max RX/TX size
* limitations)
* @supports_op: check if an operation is supported by the controller
* @exec_op: execute a SPI memory operation
...
...
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