proc-init.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /* MN103E010 Processor initialisation
  2. *
  3. * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public Licence
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the Licence, or (at your option) any later version.
  10. */
  11. #include <linux/kernel.h>
  12. #include <linux/irq.h>
  13. #include <asm/cacheflush.h>
  14. #include <asm/fpu.h>
  15. #include <asm/irq.h>
  16. #include <asm/rtc.h>
  17. #include <asm/busctl-regs.h>
  18. /*
  19. * initialise the on-silicon processor peripherals
  20. */
  21. asmlinkage void __init processor_init(void)
  22. {
  23. int loop;
  24. /* set up the exception table first */
  25. for (loop = 0x000; loop < 0x400; loop += 8)
  26. __set_intr_stub(loop, __common_exception);
  27. __set_intr_stub(EXCEP_ITLBMISS, itlb_miss);
  28. __set_intr_stub(EXCEP_DTLBMISS, dtlb_miss);
  29. __set_intr_stub(EXCEP_IAERROR, itlb_aerror);
  30. __set_intr_stub(EXCEP_DAERROR, dtlb_aerror);
  31. __set_intr_stub(EXCEP_BUSERROR, raw_bus_error);
  32. __set_intr_stub(EXCEP_DOUBLE_FAULT, double_fault);
  33. __set_intr_stub(EXCEP_FPU_DISABLED, fpu_disabled);
  34. __set_intr_stub(EXCEP_SYSCALL0, system_call);
  35. __set_intr_stub(EXCEP_NMI, nmi_handler);
  36. __set_intr_stub(EXCEP_WDT, nmi_handler);
  37. __set_intr_stub(EXCEP_IRQ_LEVEL0, irq_handler);
  38. __set_intr_stub(EXCEP_IRQ_LEVEL1, irq_handler);
  39. __set_intr_stub(EXCEP_IRQ_LEVEL2, irq_handler);
  40. __set_intr_stub(EXCEP_IRQ_LEVEL3, irq_handler);
  41. __set_intr_stub(EXCEP_IRQ_LEVEL4, irq_handler);
  42. __set_intr_stub(EXCEP_IRQ_LEVEL5, irq_handler);
  43. __set_intr_stub(EXCEP_IRQ_LEVEL6, irq_handler);
  44. IVAR0 = EXCEP_IRQ_LEVEL0;
  45. IVAR1 = EXCEP_IRQ_LEVEL1;
  46. IVAR2 = EXCEP_IRQ_LEVEL2;
  47. IVAR3 = EXCEP_IRQ_LEVEL3;
  48. IVAR4 = EXCEP_IRQ_LEVEL4;
  49. IVAR5 = EXCEP_IRQ_LEVEL5;
  50. IVAR6 = EXCEP_IRQ_LEVEL6;
  51. mn10300_dcache_flush_inv();
  52. mn10300_icache_inv();
  53. /* disable all interrupts and set to priority 6 (lowest) */
  54. for (loop = 0; loop < NR_IRQS; loop++)
  55. GxICR(loop) = GxICR_LEVEL_6 | GxICR_DETECT;
  56. /* clear the timers */
  57. TM0MD = 0;
  58. TM1MD = 0;
  59. TM2MD = 0;
  60. TM3MD = 0;
  61. TM4MD = 0;
  62. TM5MD = 0;
  63. TM6MD = 0;
  64. TM6MDA = 0;
  65. TM6MDB = 0;
  66. TM7MD = 0;
  67. TM8MD = 0;
  68. TM9MD = 0;
  69. TM10MD = 0;
  70. TM11MD = 0;
  71. calibrate_clock();
  72. }
  73. /*
  74. * determine the memory size and base from the memory controller regs
  75. */
  76. void __init get_mem_info(unsigned long *mem_base, unsigned long *mem_size)
  77. {
  78. unsigned long base, size;
  79. *mem_base = 0;
  80. *mem_size = 0;
  81. base = SDBASE(0);
  82. if (base & SDBASE_CE) {
  83. size = (base & SDBASE_CBAM) << SDBASE_CBAM_SHIFT;
  84. size = ~size + 1;
  85. base &= SDBASE_CBA;
  86. printk(KERN_INFO "SDRAM[0]: %luMb @%08lx\n", size >> 20, base);
  87. *mem_size += size;
  88. *mem_base = base;
  89. }
  90. base = SDBASE(1);
  91. if (base & SDBASE_CE) {
  92. size = (base & SDBASE_CBAM) << SDBASE_CBAM_SHIFT;
  93. size = ~size + 1;
  94. base &= SDBASE_CBA;
  95. printk(KERN_INFO "SDRAM[1]: %luMb @%08lx\n", size >> 20, base);
  96. *mem_size += size;
  97. if (*mem_base == 0)
  98. *mem_base = base;
  99. }
  100. }