ppc83xx_setup.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * arch/ppc/syslib/ppc83xx_setup.h
  3. *
  4. * MPC83XX common board definitions
  5. *
  6. * Maintainer: Kumar Gala <kumar.gala@freescale.com>
  7. *
  8. * Copyright 2005 Freescale Semiconductor Inc.
  9. *
  10. * This program is free software; you can redistribute it and/or modify it
  11. * under the terms of the GNU General Public License as published by the
  12. * Free Software Foundation; either version 2 of the License, or (at your
  13. * option) any later version.
  14. *
  15. */
  16. #ifndef __PPC_SYSLIB_PPC83XX_SETUP_H
  17. #define __PPC_SYSLIB_PPC83XX_SETUP_H
  18. #include <linux/config.h>
  19. #include <linux/init.h>
  20. #include <asm/ppcboot.h>
  21. extern unsigned long mpc83xx_find_end_of_memory(void) __init;
  22. extern long mpc83xx_time_init(void) __init;
  23. extern void mpc83xx_calibrate_decr(void) __init;
  24. extern void mpc83xx_early_serial_map(void) __init;
  25. extern void mpc83xx_restart(char *cmd);
  26. extern void mpc83xx_power_off(void);
  27. extern void mpc83xx_halt(void);
  28. extern void mpc83xx_setup_hose(void) __init;
  29. /* PCI config */
  30. #if 0
  31. #define PCI1_CFG_ADDR_OFFSET (FIXME)
  32. #define PCI1_CFG_DATA_OFFSET (FIXME)
  33. #define PCI2_CFG_ADDR_OFFSET (FIXME)
  34. #define PCI2_CFG_DATA_OFFSET (FIXME)
  35. #endif
  36. /* Serial Config */
  37. #ifdef CONFIG_SERIAL_MANY_PORTS
  38. #define RS_TABLE_SIZE 64
  39. #else
  40. #define RS_TABLE_SIZE 2
  41. #endif
  42. #ifndef BASE_BAUD
  43. #define BASE_BAUD 115200
  44. #endif
  45. #endif /* __PPC_SYSLIB_PPC83XX_SETUP_H */