sys_proto.h 496 B

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