ocotea.h 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * arch/ppc/platforms/ocotea.h
  3. *
  4. * Ocotea board definitions
  5. *
  6. * Matt Porter <mporter@kernel.crashing.org>
  7. *
  8. * Copyright 2003-2005 MontaVista Software 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. #ifdef __KERNEL__
  17. #ifndef __ASM_OCOTEA_H__
  18. #define __ASM_OCOTEA_H__
  19. #include <linux/config.h>
  20. #include <platforms/4xx/ibm440gx.h>
  21. /* F/W TLB mapping used in bootloader glue to reset EMAC */
  22. #define PPC44x_EMAC0_MR0 0xe0000800
  23. /* Location of MAC addresses in PIBS image */
  24. #define PIBS_FLASH_BASE 0xfff00000
  25. #define PIBS_MAC_BASE (PIBS_FLASH_BASE+0xb0500)
  26. #define PIBS_MAC_SIZE 0x200
  27. #define PIBS_MAC_OFFSET 0x100
  28. /* External timer clock frequency */
  29. #define OCOTEA_TMR_CLK 25000000
  30. /* RTC/NVRAM location */
  31. #define OCOTEA_RTC_ADDR 0x0000000148000000ULL
  32. #define OCOTEA_RTC_SIZE 0x2000
  33. /* Flash */
  34. #define OCOTEA_FPGA_REG_0 0x0000000148300000ULL
  35. #define OCOTEA_BOOT_LARGE_FLASH(x) (x & 0x40)
  36. #define OCOTEA_SMALL_FLASH_LOW 0x00000001ff900000ULL
  37. #define OCOTEA_SMALL_FLASH_HIGH 0x00000001fff00000ULL
  38. #define OCOTEA_SMALL_FLASH_SIZE 0x100000
  39. #define OCOTEA_LARGE_FLASH_LOW 0x00000001ff800000ULL
  40. #define OCOTEA_LARGE_FLASH_HIGH 0x00000001ffc00000ULL
  41. #define OCOTEA_LARGE_FLASH_SIZE 0x400000
  42. /* FPGA_REG_3 (Ethernet Groups) */
  43. #define OCOTEA_FPGA_REG_3 0x0000000148300003ULL
  44. /*
  45. * Serial port defines
  46. */
  47. #define RS_TABLE_SIZE 2
  48. #if defined(__BOOTER__)
  49. /* OpenBIOS defined UART mappings, used by bootloader shim */
  50. #define UART0_IO_BASE 0xE0000200
  51. #define UART1_IO_BASE 0xE0000300
  52. #else
  53. /* head_44x.S created UART mapping, used before early_serial_setup.
  54. * We cannot use default OpenBIOS UART mappings because they
  55. * don't work for configurations with more than 512M RAM. --ebs
  56. */
  57. #define UART0_IO_BASE 0xF0000200
  58. #define UART1_IO_BASE 0xF0000300
  59. #endif
  60. #define BASE_BAUD 11059200/16
  61. #define STD_UART_OP(num) \
  62. { 0, BASE_BAUD, 0, UART##num##_INT, \
  63. (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST), \
  64. iomem_base: (void*)UART##num##_IO_BASE, \
  65. io_type: SERIAL_IO_MEM},
  66. #define SERIAL_PORT_DFNS \
  67. STD_UART_OP(0) \
  68. STD_UART_OP(1)
  69. /* PCI support */
  70. #define OCOTEA_PCI_LOWER_IO 0x00000000
  71. #define OCOTEA_PCI_UPPER_IO 0x0000ffff
  72. #define OCOTEA_PCI_LOWER_MEM 0x80000000
  73. #define OCOTEA_PCI_UPPER_MEM 0xffffefff
  74. #define OCOTEA_PCI_CFGREGS_BASE 0x000000020ec00000ULL
  75. #define OCOTEA_PCI_CFGA_PLB32 0x0ec00000
  76. #define OCOTEA_PCI_CFGD_PLB32 0x0ec00004
  77. #define OCOTEA_PCI_IO_BASE 0x0000000208000000ULL
  78. #define OCOTEA_PCI_IO_SIZE 0x00010000
  79. #define OCOTEA_PCI_MEM_OFFSET 0x00000000
  80. #endif /* __ASM_OCOTEA_H__ */
  81. #endif /* __KERNEL__ */