rte_nb85e_cb.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*
  2. * include/asm-v850/rte_nb85e_cb.h -- Midas labs RTE-V850/NB85E-CB board
  3. *
  4. * Copyright (C) 2001,02,03 NEC Electronics Corporation
  5. * Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org>
  6. *
  7. * This file is subject to the terms and conditions of the GNU General
  8. * Public License. See the file COPYING in the main directory of this
  9. * archive for more details.
  10. *
  11. * Written by Miles Bader <miles@gnu.org>
  12. */
  13. #ifndef __V850_RTE_NB85E_CB_H__
  14. #define __V850_RTE_NB85E_CB_H__
  15. #include <asm/rte_cb.h> /* Common defs for Midas RTE-CB boards. */
  16. #define PLATFORM "rte-v850e/nb85e-cb"
  17. #define PLATFORM_LONG "Midas lab RTE-V850E/NB85E-CB"
  18. #define CPU_CLOCK_FREQ 50000000 /* 50MHz */
  19. /* 1MB of onboard SRAM. Note that the monitor ROM uses parts of this
  20. for its own purposes, so care must be taken. */
  21. #define SRAM_ADDR 0x03C00000
  22. #define SRAM_SIZE 0x00100000 /* 1MB */
  23. /* 16MB of onbard SDRAM. */
  24. #define SDRAM_ADDR 0x01000000
  25. #define SDRAM_SIZE 0x01000000 /* 16MB */
  26. /* CPU addresses of GBUS memory spaces. */
  27. #define GCS0_ADDR 0x00400000 /* GCS0 - Common SRAM (2MB) */
  28. #define GCS0_SIZE 0x00400000 /* 4MB */
  29. #define GCS1_ADDR 0x02000000 /* GCS1 - Flash ROM (8MB) */
  30. #define GCS1_SIZE 0x00800000 /* 8MB */
  31. #define GCS2_ADDR 0x03900000 /* GCS2 - I/O registers */
  32. #define GCS2_SIZE 0x00080000 /* 512KB */
  33. #define GCS3_ADDR 0x02800000 /* GCS3 - EXT-bus: memory space */
  34. #define GCS3_SIZE 0x00800000 /* 8MB */
  35. #define GCS4_ADDR 0x03A00000 /* GCS4 - EXT-bus: I/O space */
  36. #define GCS4_SIZE 0x00200000 /* 2MB */
  37. #define GCS5_ADDR 0x00800000 /* GCS5 - PCI bus space */
  38. #define GCS5_SIZE 0x00800000 /* 8MB */
  39. #define GCS6_ADDR 0x03980000 /* GCS6 - PCI control registers */
  40. #define GCS6_SIZE 0x00010000 /* 64KB */
  41. /* The GBUS GINT0 - GINT3 interrupts are connected to CPU interrupts 10-12.
  42. These are shared among the GBUS interrupts. */
  43. #define IRQ_GINT(n) (10 + (n))
  44. #define IRQ_GINT_NUM 3
  45. /* Used by <asm/rte_cb.h> to derive NUM_MACH_IRQS. */
  46. #define NUM_RTE_CB_IRQS NUM_CPU_IRQS
  47. #ifdef CONFIG_ROM_KERNEL
  48. /* Kernel is in ROM, starting at address 0. */
  49. #define INTV_BASE 0
  50. #else /* !CONFIG_ROM_KERNEL */
  51. /* We're using the ROM monitor. */
  52. /* The chip's real interrupt vectors are in ROM, but they jump to a
  53. secondary interrupt vector table in RAM. */
  54. #define INTV_BASE 0x03CF8000
  55. /* Scratch memory used by the ROM monitor, which shouldn't be used by
  56. linux (except for the alternate interrupt vector area, defined
  57. above). */
  58. #define MON_SCRATCH_ADDR 0x03CE8000
  59. #define MON_SCRATCH_SIZE 0x00018000 /* 96KB */
  60. #endif /* CONFIG_ROM_KERNEL */
  61. /* Some misc. on-board devices. */
  62. /* Seven-segment LED display (two digits). Write-only. */
  63. #define LED_ADDR(n) (0x03802000 + (n))
  64. #define LED(n) (*(volatile unsigned char *)LED_ADDR(n))
  65. #define LED_NUM_DIGITS 4
  66. /* Override the basic TEG UART pre-initialization so that we can
  67. initialize extra stuff. */
  68. #undef V850E_UART_PRE_CONFIGURE /* should be defined by <asm/teg.h> */
  69. #define V850E_UART_PRE_CONFIGURE rte_nb85e_cb_uart_pre_configure
  70. #ifndef __ASSEMBLY__
  71. extern void rte_nb85e_cb_uart_pre_configure (unsigned chan,
  72. unsigned cflags, unsigned baud);
  73. #endif
  74. /* This board supports RTS/CTS for the on-chip UART. */
  75. /* CTS is pin P00. */
  76. #define V850E_UART_CTS(chan) (! (TEG_PORT0_IO & 0x1))
  77. /* RTS is pin P02. */
  78. #define V850E_UART_SET_RTS(chan, val) \
  79. do { \
  80. unsigned old = TEG_PORT0_IO; \
  81. TEG_PORT0_IO = val ? (old & ~0x4) : (old | 0x4); \
  82. } while (0)
  83. #endif /* __V850_RTE_NB85E_CB_H__ */