.. | .. |
---|
15 | 15 | - clock-frequency : input clock frequency to non FSL_SOC cores |
---|
16 | 16 | |
---|
17 | 17 | Optional properties: |
---|
18 | | -- gpios : specifies the gpio pins to be used for chipselects. |
---|
| 18 | +- cs-gpios : specifies the gpio pins to be used for chipselects. |
---|
19 | 19 | The gpios will be referred to as reg = <index> in the SPI child nodes. |
---|
20 | 20 | If unspecified, a single SPI device without a chip select can be used. |
---|
| 21 | +- fsl,spisel_boot : for the MPC8306 and MPC8309, specifies that the |
---|
| 22 | + SPISEL_BOOT signal is used as chip select for a slave device. Use |
---|
| 23 | + reg = <number of gpios> in the corresponding child node, i.e. 0 if |
---|
| 24 | + the cs-gpios property is not present. |
---|
21 | 25 | |
---|
22 | 26 | Example: |
---|
23 | 27 | spi@4c0 { |
---|
.. | .. |
---|
27 | 31 | interrupts = <82 0>; |
---|
28 | 32 | interrupt-parent = <700>; |
---|
29 | 33 | mode = "cpu"; |
---|
30 | | - gpios = <&gpio 18 1 // device reg=<0> |
---|
31 | | - &gpio 19 1>; // device reg=<1> |
---|
| 34 | + cs-gpios = <&gpio 18 1 // device reg=<0> |
---|
| 35 | + &gpio 19 1>; // device reg=<1> |
---|
32 | 36 | }; |
---|
33 | 37 | |
---|
34 | 38 | |
---|