misc-ev64260.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * Host bridge init code for the Marvell/Galileo EV-64260-BP evaluation board
  3. * with a GT64260 onboard.
  4. *
  5. * Author: Mark A. Greer <mgreer@mvista.com>
  6. *
  7. * 2001 (c) MontaVista Software, Inc. This file is licensed under
  8. * the terms of the GNU General Public License version 2. This program
  9. * is licensed "as is" without any warranty of any kind, whether express
  10. * or implied.
  11. */
  12. #include <linux/types.h>
  13. #include <asm/reg.h>
  14. #include <asm/io.h>
  15. #include <asm/mv64x60_defs.h>
  16. #include <platforms/ev64260.h>
  17. #ifdef CONFIG_SERIAL_MPSC_CONSOLE
  18. extern u32 mv64x60_console_baud;
  19. extern u32 mv64x60_mpsc_clk_src;
  20. extern u32 mv64x60_mpsc_clk_freq;
  21. #endif
  22. void
  23. mv64x60_board_init(void __iomem *old_base, void __iomem *new_base)
  24. {
  25. u32 p, v;
  26. /* DINK doesn't enable 745x timebase, so enable here (Adrian Cox) */
  27. p = mfspr(SPRN_PVR);
  28. p >>= 16;
  29. /* Reasonable SWAG at a 745x PVR value */
  30. if (((p & 0xfff0) == 0x8000) && (p != 0x800c)) {
  31. v = mfspr(SPRN_HID0);
  32. v |= HID0_TBEN;
  33. mtspr(SPRN_HID0, v);
  34. }
  35. #ifdef CONFIG_SERIAL_8250_CONSOLE
  36. /*
  37. * Change device bus 2 window so that bootoader can do I/O thru
  38. * 8250/16550 UART that's mapped in that window.
  39. */
  40. out_le32(new_base + MV64x60_CPU2DEV_2_BASE, EV64260_UART_BASE >> 20);
  41. out_le32(new_base + MV64x60_CPU2DEV_2_SIZE, EV64260_UART_END >> 20);
  42. __asm__ __volatile__("sync");
  43. #elif defined(CONFIG_SERIAL_MPSC_CONSOLE)
  44. mv64x60_console_baud = EV64260_DEFAULT_BAUD;
  45. mv64x60_mpsc_clk_src = EV64260_MPSC_CLK_SRC;
  46. mv64x60_mpsc_clk_freq = EV64260_MPSC_CLK_FREQ;
  47. #endif
  48. }