cpu-u8500.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Copyright (C) 2008-2009 ST-Ericsson
  3. *
  4. * Author: Srinidhi KASAGAR <srinidhi.kasagar@stericsson.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2, as
  8. * published by the Free Software Foundation.
  9. *
  10. */
  11. #include <linux/types.h>
  12. #include <linux/init.h>
  13. #include <linux/device.h>
  14. #include <linux/amba/bus.h>
  15. #include <linux/irq.h>
  16. #include <linux/platform_device.h>
  17. #include <asm/hardware/gic.h>
  18. #include <asm/mach/map.h>
  19. #include <mach/hardware.h>
  20. /* add any platform devices here - TODO */
  21. static struct platform_device *platform_devs[] __initdata = {
  22. /* yet to be added, add i2c0, gpio.. */
  23. };
  24. #define __IO_DEV_DESC(x, sz) { \
  25. .virtual = IO_ADDRESS(x), \
  26. .pfn = __phys_to_pfn(x), \
  27. .length = sz, \
  28. .type = MT_DEVICE, \
  29. }
  30. /* minimum static i/o mapping required to boot U8500 platforms */
  31. static struct map_desc u8500_io_desc[] __initdata = {
  32. __IO_DEV_DESC(U8500_GIC_CPU_BASE, SZ_4K),
  33. __IO_DEV_DESC(U8500_GIC_DIST_BASE, SZ_4K),
  34. __IO_DEV_DESC(U8500_MTU0_BASE, SZ_4K),
  35. __IO_DEV_DESC(U8500_TWD_BASE, SZ_4K),
  36. __IO_DEV_DESC(U8500_SCU_BASE, SZ_4K),
  37. __IO_DEV_DESC(U8500_BACKUPRAM0_BASE, SZ_8K),
  38. };
  39. void __init u8500_map_io(void)
  40. {
  41. iotable_init(u8500_io_desc, ARRAY_SIZE(u8500_io_desc));
  42. }
  43. void __init u8500_init_irq(void)
  44. {
  45. gic_dist_init(0, __io_address(U8500_GIC_DIST_BASE), 29);
  46. gic_cpu_init(0, __io_address(U8500_GIC_CPU_BASE));
  47. }
  48. /*
  49. * This function is called from the board init
  50. */
  51. void __init u8500_init_devices(void)
  52. {
  53. /* Register the platform devices */
  54. platform_add_devices(platform_devs, ARRAY_SIZE(platform_devs));
  55. return ;
  56. }