kmp204x.h 972 B

12345678910111213141516171819202122232425262728293031323334
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2013 Keymile AG
  4. * Valentin Longchamp <valentin.longchamp@keymile.com>
  5. */
  6. /* QRIO GPIO ports */
  7. #define GPIO_A 0x40
  8. #define GPIO_B 0x60
  9. int qrio_get_gpio(u8 port_off, u8 gpio_nr);
  10. void qrio_set_opendrain_gpio(u8 port_off, u8 gpio_nr, u8 val);
  11. void qrio_set_gpio(u8 port_off, u8 gpio_nr, bool value);
  12. void qrio_gpio_direction_output(u8 port_off, u8 gpio_nr, bool value);
  13. void qrio_gpio_direction_input(u8 port_off, u8 gpio_nr);
  14. #define PRSTCFG_POWUP_UNIT_CORE_RST 0x0
  15. #define PRSTCFG_POWUP_UNIT_RST 0x1
  16. #define PRSTCFG_POWUP_RST 0x3
  17. void qrio_prst(u8 bit, bool en, bool wden);
  18. void qrio_wdmask(u8 bit, bool wden);
  19. void qrio_prstcfg(u8 bit, u8 mode);
  20. void qrio_set_leds(void);
  21. void qrio_enable_app_buffer(void);
  22. void qrio_cpuwd_flag(bool flag);
  23. int qrio_reset_reason(void);
  24. #define UPREQ_UNIT_RST 0x0
  25. #define UPREQ_CORE_RST 0x1
  26. void qrio_uprstreq(u8 mode);
  27. void pci_of_setup(void *blob, bd_t *bd);