common.h 657 B

1234567891011121314151617181920212223242526272829303132
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * arch/arm/mach-lpc32xx/common.h
  4. *
  5. * Author: Kevin Wells <kevin.wells@nxp.com>
  6. *
  7. * Copyright (C) 2009-2010 NXP Semiconductors
  8. */
  9. #ifndef __LPC32XX_COMMON_H
  10. #define __LPC32XX_COMMON_H
  11. #include <linux/init.h>
  12. /*
  13. * Other arch specific structures and functions
  14. */
  15. extern void __init lpc32xx_map_io(void);
  16. extern void __init lpc32xx_serial_init(void);
  17. /*
  18. * Returns the LPC32xx unique 128-bit chip ID
  19. */
  20. extern void lpc32xx_get_uid(u32 devid[4]);
  21. /*
  22. * Pointers used for sizing and copying suspend function data
  23. */
  24. extern int lpc32xx_sys_suspend(void);
  25. extern int lpc32xx_sys_suspend_sz;
  26. #endif