forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge series "spi: Add FSI-attached SPI controller driver" from Eddie…
… James <[email protected]>: This series adds a dts binding and a driver for a new SPI controller that is accessed over FSI bus. Eddie James (2): dt-bindings: fsi: Add FSI2SPI bindings spi: Add FSI-attached SPI controller driver .../devicetree/bindings/fsi/ibm,fsi2spi.yaml | 36 ++ MAINTAINERS | 7 + drivers/spi/Kconfig | 7 + drivers/spi/Makefile | 1 + drivers/spi/spi-fsi.c | 558 ++++++++++++++++++ 5 files changed, 609 insertions(+) create mode 100644 Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml create mode 100644 drivers/spi/spi-fsi.c -- 2.24.0
- Loading branch information
Showing
5 changed files
with
609 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-or-later) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/fsi/ibm,fsi2spi.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: IBM FSI-attached SPI controllers | ||
|
||
maintainers: | ||
- Eddie James <[email protected]> | ||
|
||
description: | | ||
This binding describes an FSI CFAM engine called the FSI2SPI. Therefore this | ||
node will always be a child of an FSI CFAM node; see fsi.txt for details on | ||
FSI slave and CFAM nodes. This FSI2SPI engine provides access to a number of | ||
SPI controllers. | ||
properties: | ||
compatible: | ||
enum: | ||
- ibm,fsi2spi | ||
|
||
reg: | ||
items: | ||
- description: FSI slave address | ||
|
||
required: | ||
- compatible | ||
- reg | ||
|
||
examples: | ||
- | | ||
fsi2spi@1c00 { | ||
compatible = "ibm,fsi2spi"; | ||
reg = <0x1c00 0x400>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6861,6 +6861,13 @@ S: Maintained | |
F: drivers/i2c/busses/i2c-fsi.c | ||
F: Documentation/devicetree/bindings/i2c/i2c-fsi.txt | ||
|
||
FSI-ATTACHED SPI DRIVER | ||
M: Eddie James <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
F: drivers/spi/spi-fsi.c | ||
F: Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml | ||
|
||
FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE | ||
M: Jan Kara <[email protected]> | ||
R: Amir Goldstein <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.