Commit 4c3ff31
committed
spi: axi-spi-engine improvements
Merge series from David Lechner <dlechner@baylibre.com>:
We are working towards adding support for the offload feature[1] of the
AXI SPI Engine IP core. Before we can do that, we want to make some
general fixes and improvements to the driver. In order to avoid a giant
series with 35+ patches, we are splitting this up into a few smaller
series.
This first series mostly doing some housekeeping:
* Convert device tree bindings to yaml.
* Add a MAINTAINERS entry.
* Clean up probe and remove using devm.
* Separate message state from driver state.
* Add support for cs_off and variable word size.
Once this series is applied, we will follow up with a second series of
general improvements, and then finally a 3rd series that implements the
offload support. The offload support will also involve the IIO
subsystem (a new IIO driver will depend on the new SPI offload feature),
so I'm mentioning this now in case we want to do anything ahead of time
to prepare for that (e.g. putting all of these changes on a separate
branch).
[1]: https://wiki.analog.com/resources/fpga/peripherals/spi_engine/offload253 files changed
Lines changed: 4420 additions & 3531 deletions
File tree
- Documentation
- arch/x86
- devicetree/bindings
- net
- spi
- ufs
- arch
- parisc
- include/asm
- kernel
- x86
- include/asm
- xen
- kernel
- acpi
- block
- drivers
- accel/ivpu
- firmware
- gpu/drm
- amd
- amdgpu
- display
- amdgpu_dm
- dc
- clk_mgr/dcn35
- core
- dcn35
- link
- dmub
- src
- pm/swsmu
- inc/pmfw_if
- smu13
- ci/xfails
- nouveau
- include/nvkm/core
- nvkm
- core
- subdev/gsp
- i2c/busses
- irqchip
- md
- net
- bonding
- ethernet
- amd/pds_core
- broadcom
- cortina
- google/gve
- hisilicon/hns3
- hns3pf
- hns3vf
- intel/ice
- marvell
- mellanox/mlx5/core
- en
- lib
- steering
- realtek
- stmicro/stmmac
- ti/icssg
- ipvlan
- ppp
- parisc
- ptp
- scsi
- qla2xxx
- spi
- ufs/core
- vdpa/vdpa_sim
- vhost
- virtio
- xen
- events
- fs
- bcachefs
- btrfs
- nfsd
- overlayfs
- smb/client
- xfs
- libxfs
- include
- linux
- net
- netfilter
- tc_act
- uapi/linux
- xen
- io_uring
- kernel
- bpf
- cgroup
- events
- futex
- sched
- time
- lib/zstd/common
- mm
- damon
- net
- bridge/netfilter
- core
- ipv4
- mptcp
- ncsi
- netfilter
- ipset
- sched
- tipc
- unix
- scripts
- gcc-plugins
- kconfig
- mod
- sound/pci/hda
- tools
- power/x86/turbostat
- testing/selftests
- bpf
- progs
- verifier
- mm
- net/mptcp
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
77 | 77 | | |
78 | 78 | | |
79 | 79 | | |
80 | | - | |
| 80 | + | |
81 | 81 | | |
82 | 82 | | |
83 | 83 | | |
| |||
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
275 | 275 | | |
276 | 276 | | |
277 | 277 | | |
278 | | - | |
| 278 | + | |
279 | 279 | | |
280 | 280 | | |
281 | 281 | | |
282 | 282 | | |
283 | | - | |
| 283 | + | |
284 | 284 | | |
285 | 285 | | |
286 | 286 | | |
| |||
Lines changed: 0 additions & 31 deletions
This file was deleted.
Lines changed: 66 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| 39 | + | |
39 | 40 | | |
40 | 41 | | |
41 | 42 | | |
| |||
122 | 123 | | |
123 | 124 | | |
124 | 125 | | |
| 126 | + | |
125 | 127 | | |
126 | 128 | | |
127 | 129 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3415 | 3415 | | |
3416 | 3416 | | |
3417 | 3417 | | |
| 3418 | + | |
| 3419 | + | |
| 3420 | + | |
| 3421 | + | |
| 3422 | + | |
| 3423 | + | |
| 3424 | + | |
| 3425 | + | |
| 3426 | + | |
| 3427 | + | |
3418 | 3428 | | |
3419 | 3429 | | |
3420 | 3430 | | |
| |||
8950 | 8960 | | |
8951 | 8961 | | |
8952 | 8962 | | |
8953 | | - | |
8954 | 8963 | | |
8955 | 8964 | | |
8956 | 8965 | | |
| |||
21769 | 21778 | | |
21770 | 21779 | | |
21771 | 21780 | | |
21772 | | - | |
| 21781 | + | |
| 21782 | + | |
| 21783 | + | |
21773 | 21784 | | |
21774 | 21785 | | |
21775 | 21786 | | |
| |||
21793 | 21804 | | |
21794 | 21805 | | |
21795 | 21806 | | |
| 21807 | + | |
| 21808 | + | |
| 21809 | + | |
| 21810 | + | |
| 21811 | + | |
| 21812 | + | |
| 21813 | + | |
| 21814 | + | |
| 21815 | + | |
21796 | 21816 | | |
21797 | 21817 | | |
21798 | 21818 | | |
| |||
23692 | 23712 | | |
23693 | 23713 | | |
23694 | 23714 | | |
| 23715 | + | |
| 23716 | + | |
| 23717 | + | |
| 23718 | + | |
| 23719 | + | |
| 23720 | + | |
| 23721 | + | |
| 23722 | + | |
| 23723 | + | |
| 23724 | + | |
| 23725 | + | |
| 23726 | + | |
| 23727 | + | |
| 23728 | + | |
23695 | 23729 | | |
23696 | 23730 | | |
23697 | 23731 | | |
| |||
23872 | 23906 | | |
23873 | 23907 | | |
23874 | 23908 | | |
23875 | | - | |
23876 | | - | |
| 23909 | + | |
23877 | 23910 | | |
23878 | 23911 | | |
23879 | 23912 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
| 5 | + | |
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
140 | 140 | | |
141 | 141 | | |
142 | 142 | | |
143 | | - | |
144 | | - | |
| 143 | + | |
| 144 | + | |
145 | 145 | | |
146 | 146 | | |
147 | | - | |
| 147 | + | |
148 | 148 | | |
149 | 149 | | |
150 | 150 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
349 | 349 | | |
350 | 350 | | |
351 | 351 | | |
352 | | - | |
353 | | - | |
354 | | - | |
355 | | - | |
356 | | - | |
357 | | - | |
358 | | - | |
359 | | - | |
360 | | - | |
| 352 | + | |
361 | 353 | | |
362 | 354 | | |
363 | 355 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
| 50 | + | |
| 51 | + | |
50 | 52 | | |
51 | 53 | | |
52 | 54 | | |
| |||
0 commit comments