ppc85xx_setup.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * MPC85XX common board definitions
  3. *
  4. * Maintainer: Kumar Gala <galak@kernel.crashing.org>
  5. *
  6. * Copyright 2004 Freescale Semiconductor Inc.
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the
  10. * Free Software Foundation; either version 2 of the License, or (at your
  11. * option) any later version.
  12. *
  13. */
  14. #ifndef __PPC_SYSLIB_PPC85XX_SETUP_H
  15. #define __PPC_SYSLIB_PPC85XX_SETUP_H
  16. #include <linux/init.h>
  17. #include <asm/ppcboot.h>
  18. extern unsigned long mpc85xx_find_end_of_memory(void) __init;
  19. extern void mpc85xx_calibrate_decr(void) __init;
  20. extern void mpc85xx_early_serial_map(void) __init;
  21. extern void mpc85xx_restart(char *cmd);
  22. extern void mpc85xx_power_off(void);
  23. extern void mpc85xx_halt(void);
  24. extern void mpc85xx_setup_hose(void) __init;
  25. /* PCI config */
  26. #define PCI1_CFG_ADDR_OFFSET (0x8000)
  27. #define PCI1_CFG_DATA_OFFSET (0x8004)
  28. #define PCI2_CFG_ADDR_OFFSET (0x9000)
  29. #define PCI2_CFG_DATA_OFFSET (0x9004)
  30. /* Additional register for PCI-X configuration */
  31. #define PCIX_NEXT_CAP 0x60
  32. #define PCIX_CAP_ID 0x61
  33. #define PCIX_COMMAND 0x62
  34. #define PCIX_STATUS 0x64
  35. /* Serial Config */
  36. #ifdef CONFIG_SERIAL_MANY_PORTS
  37. #define RS_TABLE_SIZE 64
  38. #else
  39. #define RS_TABLE_SIZE 2
  40. #endif
  41. #ifndef BASE_BAUD
  42. #define BASE_BAUD 115200
  43. #endif
  44. /* Offset of CPM register space */
  45. #define CPM_MAP_ADDR (CCSRBAR + MPC85xx_CPM_OFFSET)
  46. #endif /* __PPC_SYSLIB_PPC85XX_SETUP_H */