mpc85xx_ads_common.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * MPC85XX ADS 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 __MACH_MPC85XX_ADS_H__
  15. #define __MACH_MPC85XX_ADS_H__
  16. #include <linux/init.h>
  17. #include <asm/ppcboot.h>
  18. #define BOARD_CCSRBAR ((uint)0xe0000000)
  19. #define BCSR_ADDR ((uint)0xf8000000)
  20. #define BCSR_SIZE ((uint)(32 * 1024))
  21. struct seq_file;
  22. extern int mpc85xx_ads_show_cpuinfo(struct seq_file *m);
  23. extern void mpc85xx_ads_init_IRQ(void) __init;
  24. extern void mpc85xx_ads_map_io(void) __init;
  25. /* PCI interrupt controller */
  26. #define PIRQA MPC85xx_IRQ_EXT1
  27. #define PIRQB MPC85xx_IRQ_EXT2
  28. #define PIRQC MPC85xx_IRQ_EXT3
  29. #define PIRQD MPC85xx_IRQ_EXT4
  30. #define MPC85XX_PCI1_LOWER_IO 0x00000000
  31. #define MPC85XX_PCI1_UPPER_IO 0x00ffffff
  32. #define MPC85XX_PCI1_LOWER_MEM 0x80000000
  33. #define MPC85XX_PCI1_UPPER_MEM 0x9fffffff
  34. #define MPC85XX_PCI1_IO_BASE 0xe2000000
  35. #define MPC85XX_PCI1_MEM_OFFSET 0x00000000
  36. #define MPC85XX_PCI1_IO_SIZE 0x01000000
  37. /* FCC1 Clock Source Configuration. These can be
  38. * redefined in the board specific file.
  39. * Can only choose from CLK9-12 */
  40. #define F1_RXCLK 12
  41. #define F1_TXCLK 11
  42. /* FCC2 Clock Source Configuration. These can be
  43. * redefined in the board specific file.
  44. * Can only choose from CLK13-16 */
  45. #define F2_RXCLK 13
  46. #define F2_TXCLK 14
  47. /* FCC3 Clock Source Configuration. These can be
  48. * redefined in the board specific file.
  49. * Can only choose from CLK13-16 */
  50. #define F3_RXCLK 15
  51. #define F3_TXCLK 16
  52. #endif /* __MACH_MPC85XX_ADS_H__ */