spear1310.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * arch/arm/mach-spear13xx/spear1310.c
  3. *
  4. * SPEAr1310 machine source file
  5. *
  6. * Copyright (C) 2012 ST Microelectronics
  7. * Viresh Kumar <viresh.linux@gmail.com>
  8. *
  9. * This file is licensed under the terms of the GNU General Public
  10. * License version 2. This program is licensed "as is" without any
  11. * warranty of any kind, whether express or implied.
  12. */
  13. #define pr_fmt(fmt) "SPEAr1310: " fmt
  14. #include <linux/amba/pl022.h>
  15. #include <linux/irqchip.h>
  16. #include <linux/of_platform.h>
  17. #include <linux/pata_arasan_cf_data.h>
  18. #include <asm/mach/arch.h>
  19. #include <asm/mach/map.h>
  20. #include "generic.h"
  21. #include <mach/spear.h>
  22. /* Base addresses */
  23. #define SPEAR1310_SSP1_BASE UL(0x5D400000)
  24. #define SPEAR1310_SATA0_BASE UL(0xB1000000)
  25. #define SPEAR1310_SATA1_BASE UL(0xB1800000)
  26. #define SPEAR1310_SATA2_BASE UL(0xB4000000)
  27. #define SPEAR1310_RAS_GRP1_BASE UL(0xD8000000)
  28. #define VA_SPEAR1310_RAS_GRP1_BASE UL(0xFA000000)
  29. static struct arasan_cf_pdata cf_pdata = {
  30. .cf_if_clk = CF_IF_CLK_166M,
  31. .quirk = CF_BROKEN_UDMA,
  32. .dma_priv = &cf_dma_priv,
  33. };
  34. /* ssp device registration */
  35. static struct pl022_ssp_controller ssp1_plat_data = {
  36. .enable_dma = 0,
  37. };
  38. /* Add SPEAr1310 auxdata to pass platform data */
  39. static struct of_dev_auxdata spear1310_auxdata_lookup[] __initdata = {
  40. OF_DEV_AUXDATA("arasan,cf-spear1340", MCIF_CF_BASE, NULL, &cf_pdata),
  41. OF_DEV_AUXDATA("snps,dma-spear1340", DMAC0_BASE, NULL, &dmac_plat_data),
  42. OF_DEV_AUXDATA("snps,dma-spear1340", DMAC1_BASE, NULL, &dmac_plat_data),
  43. OF_DEV_AUXDATA("arm,pl022", SSP_BASE, NULL, &pl022_plat_data),
  44. OF_DEV_AUXDATA("arm,pl022", SPEAR1310_SSP1_BASE, NULL, &ssp1_plat_data),
  45. {}
  46. };
  47. static void __init spear1310_dt_init(void)
  48. {
  49. of_platform_populate(NULL, of_default_bus_match_table,
  50. spear1310_auxdata_lookup, NULL);
  51. }
  52. static const char * const spear1310_dt_board_compat[] = {
  53. "st,spear1310",
  54. "st,spear1310-evb",
  55. NULL,
  56. };
  57. /*
  58. * Following will create 16MB static virtual/physical mappings
  59. * PHYSICAL VIRTUAL
  60. * 0xD8000000 0xFA000000
  61. */
  62. struct map_desc spear1310_io_desc[] __initdata = {
  63. {
  64. .virtual = VA_SPEAR1310_RAS_GRP1_BASE,
  65. .pfn = __phys_to_pfn(SPEAR1310_RAS_GRP1_BASE),
  66. .length = SZ_16M,
  67. .type = MT_DEVICE
  68. },
  69. };
  70. static void __init spear1310_map_io(void)
  71. {
  72. iotable_init(spear1310_io_desc, ARRAY_SIZE(spear1310_io_desc));
  73. spear13xx_map_io();
  74. }
  75. DT_MACHINE_START(SPEAR1310_DT, "ST SPEAr1310 SoC with Flattened Device Tree")
  76. .smp = smp_ops(spear13xx_smp_ops),
  77. .map_io = spear1310_map_io,
  78. .init_irq = irqchip_init,
  79. .init_time = spear13xx_timer_init,
  80. .init_machine = spear1310_dt_init,
  81. .restart = spear_restart,
  82. .dt_compat = spear1310_dt_board_compat,
  83. MACHINE_END