sys_proto.h 588 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2011 Vladimir Zapolskiy <vz@mleia.com>
  4. */
  5. #ifndef _LPC32XX_SYS_PROTO_H
  6. #define _LPC32XX_SYS_PROTO_H
  7. #include <asm/arch/emc.h>
  8. void lpc32xx_uart_init(unsigned int uart_id);
  9. void lpc32xx_dma_init(void);
  10. void lpc32xx_mac_init(void);
  11. void lpc32xx_mlc_nand_init(void);
  12. void lpc32xx_slc_nand_init(void);
  13. void lpc32xx_i2c_init(unsigned int devnum);
  14. void lpc32xx_ssp_init(void);
  15. void lpc32xx_usb_init(void);
  16. #if defined(CONFIG_SPL_BUILD)
  17. void ddr_init(const struct emc_dram_settings *dram);
  18. #endif
  19. #endif /* _LPC32XX_SYS_PROTO_H */