ppc83xx_setup.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * MPC83XX common board definitions
  3. *
  4. * Maintainer: Kumar Gala <galak@kernel.crashing.org>
  5. *
  6. * Copyright 2005 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. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License along
  19. * with this program; if not, write to the Free Software Foundation, Inc.,
  20. * 675 Mass Ave, Cambridge, MA 02139, USA.
  21. */
  22. #ifndef __PPC_SYSLIB_PPC83XX_SETUP_H
  23. #define __PPC_SYSLIB_PPC83XX_SETUP_H
  24. #include <linux/config.h>
  25. #include <linux/init.h>
  26. extern unsigned long mpc83xx_find_end_of_memory(void) __init;
  27. extern long mpc83xx_time_init(void) __init;
  28. extern void mpc83xx_calibrate_decr(void) __init;
  29. extern void mpc83xx_early_serial_map(void) __init;
  30. extern void mpc83xx_restart(char *cmd);
  31. extern void mpc83xx_power_off(void);
  32. extern void mpc83xx_halt(void);
  33. extern void mpc83xx_setup_hose(void) __init;
  34. /* PCI config */
  35. #define PCI1_CFG_ADDR_OFFSET (0x8300)
  36. #define PCI1_CFG_DATA_OFFSET (0x8304)
  37. #define PCI2_CFG_ADDR_OFFSET (0x8380)
  38. #define PCI2_CFG_DATA_OFFSET (0x8384)
  39. /* Serial Config */
  40. #ifdef CONFIG_SERIAL_MANY_PORTS
  41. #define RS_TABLE_SIZE 64
  42. #else
  43. #define RS_TABLE_SIZE 2
  44. #endif
  45. #ifndef BASE_BAUD
  46. #define BASE_BAUD 115200
  47. #endif
  48. #endif /* __PPC_SYSLIB_PPC83XX_SETUP_H */