misc-ev64260.c 1.6 KB

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