cpu-8815.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright STMicroelectronics, 2007.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. */
  18. #include <linux/types.h>
  19. #include <linux/init.h>
  20. #include <linux/device.h>
  21. #include <mach/hardware.h>
  22. #include <mach/irqs.h>
  23. #include <asm/mach/map.h>
  24. #include <asm/hardware/vic.h>
  25. /* All SoC devices live in the same area (see hardware.h) */
  26. static struct map_desc nomadik_io_desc[] __initdata = {
  27. {
  28. .virtual = NOMADIK_IO_VIRTUAL,
  29. .pfn = __phys_to_pfn(NOMADIK_IO_PHYSICAL),
  30. .length = NOMADIK_IO_SIZE,
  31. .type = MT_DEVICE,
  32. }
  33. /* static ram and secured ram may be added later */
  34. };
  35. void __init cpu8815_map_io(void)
  36. {
  37. iotable_init(nomadik_io_desc, ARRAY_SIZE(nomadik_io_desc));
  38. }
  39. void __init cpu8815_init_irq(void)
  40. {
  41. /* This modified VIC cell has two register blocks, at 0 and 0x20 */
  42. vic_init(io_p2v(NOMADIK_IC_BASE + 0x00), IRQ_VIC_START + 0, ~0, 0);
  43. vic_init(io_p2v(NOMADIK_IC_BASE + 0x20), IRQ_VIC_START + 32, ~0, 0);
  44. }
  45. /*
  46. * This function is called from the board init ("init_machine").
  47. * Currently nothing is done as we can't register amba devs so early.
  48. */
  49. void __init cpu8815_platform_init(void)
  50. {
  51. return;
  52. }