0001 * ST-Microelectronics SPI FSM Serial (NOR) Flash Controller
0002
0003 Required properties:
0004 - compatible : Should be "st,spi-fsm"
0005 - reg : Contains register's location and length.
0006 - reg-names : Should contain the reg names "spi-fsm"
0007 - interrupts : The interrupt number
0008 - pinctrl-0 : Standard Pinctrl phandle (see: pinctrl/pinctrl-bindings.txt)
0009
0010 Optional properties:
0011 - st,syscfg : Phandle to boot-device system configuration registers
0012 - st,boot-device-reg : Address of the aforementioned boot-device register(s)
0013 - st,boot-device-spi : Expected boot-device value if booted via this device
0014
0015 Example:
0016 spifsm: spifsm@fe902000{
0017 compatible = "st,spi-fsm";
0018 reg = <0xfe902000 0x1000>;
0019 reg-names = "spi-fsm";
0020 pinctrl-0 = <&pinctrl_fsm>;
0021 st,syscfg = <&syscfg_rear>;
0022 st,boot-device-reg = <0x958>;
0023 st,boot-device-spi = <0x1a>;
0024 };
0025