rte_nb85e_cb.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * arch/v850/kernel/rte_nb85e_cb.c -- Midas labs RTE-V850E/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. #include <linux/kernel.h>
  14. #include <linux/init.h>
  15. #include <linux/mm.h>
  16. #include <linux/swap.h>
  17. #include <linux/bootmem.h>
  18. #include <linux/irq.h>
  19. #include <asm/atomic.h>
  20. #include <asm/page.h>
  21. #include <asm/v850e.h>
  22. #include <asm/rte_nb85e_cb.h>
  23. #include "mach.h"
  24. void __init mach_early_init (void)
  25. {
  26. /* Configure caching; some possible settings:
  27. BHC = 0x0000, DCC = 0x0000 -- all caching disabled
  28. BHC = 0x0040, DCC = 0x0000 -- SDRAM: icache only
  29. BHC = 0x0080, DCC = 0x0C00 -- SDRAM: write-back dcache only
  30. BHC = 0x00C0, DCC = 0x0C00 -- SDRAM: icache + write-back dcache
  31. BHC = 0x00C0, DCC = 0x0800 -- SDRAM: icache + write-thru dcache
  32. We can only cache SDRAM (we can't use cache SRAM because it's in
  33. the same memory region as the on-chip RAM and I/O space).
  34. Unfortunately, the dcache seems to be buggy, so we only use the
  35. icache for now. */
  36. v850e_cache_enable (0x0040 /*BHC*/, 0x0003 /*ICC*/, 0x0000 /*DCC*/);
  37. rte_cb_early_init ();
  38. }
  39. void __init mach_get_physical_ram (unsigned long *ram_start,
  40. unsigned long *ram_len)
  41. {
  42. /* We just use SDRAM here. */
  43. *ram_start = SDRAM_ADDR;
  44. *ram_len = SDRAM_SIZE;
  45. }
  46. void mach_gettimeofday (struct timespec *tv)
  47. {
  48. tv->tv_sec = 0;
  49. tv->tv_nsec = 0;
  50. }
  51. /* Called before configuring an on-chip UART. */
  52. void rte_nb85e_cb_uart_pre_configure (unsigned chan,
  53. unsigned cflags, unsigned baud)
  54. {
  55. /* The RTE-NB85E-CB connects some general-purpose I/O pins on the
  56. CPU to the RTS/CTS lines the UART's serial connection, as follows:
  57. P00 = CTS (in), P01 = DSR (in), P02 = RTS (out), P03 = DTR (out). */
  58. TEG_PORT0_PM = 0x03; /* P00 and P01 inputs, P02 and P03 outputs */
  59. TEG_PORT0_IO = 0x03; /* Accept input */
  60. /* Do pre-configuration for the actual UART. */
  61. teg_uart_pre_configure (chan, cflags, baud);
  62. }
  63. void __init mach_init_irqs (void)
  64. {
  65. teg_init_irqs ();
  66. rte_cb_init_irqs ();
  67. }