st-fsm.txt 963 B

1234567891011121314151617181920212223242526
  1. * ST-Microelectronics SPI FSM Serial (NOR) Flash Controller
  2. Required properties:
  3. - compatible : Should be "st,spi-fsm"
  4. - reg : Contains register's location and length.
  5. - reg-names : Should contain the reg names "spi-fsm"
  6. - interrupts : The interrupt number
  7. - pinctrl-0 : Standard Pinctrl phandle (see: pinctrl/pinctrl-bindings.txt)
  8. Optional properties:
  9. - st,syscfg : Phandle to boot-device system configuration registers
  10. - st,boot-device-reg : Address of the aforementioned boot-device register(s)
  11. - st,boot-device-spi : Expected boot-device value if booted via this device
  12. Example:
  13. spifsm: spifsm@fe902000{
  14. compatible = "st,spi-fsm";
  15. reg = <0xfe902000 0x1000>;
  16. reg-names = "spi-fsm";
  17. pinctrl-0 = <&pinctrl_fsm>;
  18. st,syscfg = <&syscfg_rear>;
  19. st,boot-device-reg = <0x958>;
  20. st,boot-device-spi = <0x1a>;
  21. status = "okay";
  22. };