ep405.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * Embedded Planet EP405 with PlanetCore firmware
  3. *
  4. * (c) Benjamin Herrenschmidt <benh@kernel.crashing.org>, IBM Corp,\
  5. *
  6. * Based on ep88xc.c by
  7. *
  8. * Scott Wood <scottwood@freescale.com>
  9. *
  10. * Copyright (c) 2007 Freescale Semiconductor, Inc.
  11. *
  12. * This program is free software; you can redistribute it and/or modify it
  13. * under the terms of the GNU General Public License version 2 as published
  14. * by the Free Software Foundation.
  15. */
  16. #include "ops.h"
  17. #include "stdio.h"
  18. #include "planetcore.h"
  19. #include "dcr.h"
  20. #include "4xx.h"
  21. #include "io.h"
  22. static char *table;
  23. static u64 mem_size;
  24. static void platform_fixups(void)
  25. {
  26. u64 val;
  27. void *nvrtc;
  28. dt_fixup_memory(0, mem_size);
  29. planetcore_set_mac_addrs(table);
  30. if (!planetcore_get_decimal(table, PLANETCORE_KEY_CRYSTAL_HZ, &val)) {
  31. printf("No PlanetCore crystal frequency key.\r\n");
  32. return;
  33. }
  34. ibm405gp_fixup_clocks(val, 0xa8c000);
  35. ibm4xx_quiesce_eth((u32 *)0xef600800, NULL);
  36. ibm4xx_fixup_ebc_ranges("/plb/ebc");
  37. if (!planetcore_get_decimal(table, PLANETCORE_KEY_KB_NVRAM, &val)) {
  38. printf("No PlanetCore NVRAM size key.\r\n");
  39. return;
  40. }
  41. nvrtc = finddevice("/plb/ebc/nvrtc@4,200000");
  42. if (nvrtc != NULL) {
  43. u32 reg[3] = { 4, 0x200000, 0};
  44. getprop(nvrtc, "reg", reg, 3);
  45. reg[2] = (val << 10) & 0xffffffff;
  46. setprop(nvrtc, "reg", reg, 3);
  47. }
  48. }
  49. void platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
  50. unsigned long r6, unsigned long r7)
  51. {
  52. table = (char *)r3;
  53. planetcore_prepare_table(table);
  54. if (!planetcore_get_decimal(table, PLANETCORE_KEY_MB_RAM, &mem_size))
  55. return;
  56. mem_size *= 1024 * 1024;
  57. simple_alloc_init(_end, mem_size - (unsigned long)_end, 32, 64);
  58. fdt_init(_dtb_start);
  59. planetcore_set_stdout_path(table);
  60. serial_console_init();
  61. platform_ops.fixups = platform_fixups;
  62. }