common.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /*
  2. * Code commons to all DaVinci SoCs.
  3. *
  4. * Author: Mark A. Greer <mgreer@mvista.com>
  5. *
  6. * 2009 (c) MontaVista Software, Inc. This file is licensed under
  7. * the terms of the GNU General Public License version 2. This program
  8. * is licensed "as is" without any warranty of any kind, whether express
  9. * or implied.
  10. */
  11. #include <linux/module.h>
  12. #include <linux/io.h>
  13. #include <linux/etherdevice.h>
  14. #include <linux/davinci_emac.h>
  15. #include <asm/tlb.h>
  16. #include <asm/mach/map.h>
  17. #include <mach/common.h>
  18. #include <mach/cputype.h>
  19. #include "clock.h"
  20. struct davinci_soc_info davinci_soc_info;
  21. EXPORT_SYMBOL(davinci_soc_info);
  22. void __iomem *davinci_intc_base;
  23. int davinci_intc_type;
  24. void davinci_get_mac_addr(struct memory_accessor *mem_acc, void *context)
  25. {
  26. char *mac_addr = davinci_soc_info.emac_pdata->mac_addr;
  27. off_t offset = (off_t)context;
  28. /* Read MAC addr from EEPROM */
  29. if (mem_acc->read(mem_acc, mac_addr, offset, ETH_ALEN) == ETH_ALEN)
  30. pr_info("Read MAC addr from EEPROM: %pM\n", mac_addr);
  31. }
  32. static int __init davinci_init_id(struct davinci_soc_info *soc_info)
  33. {
  34. int i;
  35. struct davinci_id *dip;
  36. u8 variant;
  37. u16 part_no;
  38. void __iomem *base;
  39. base = ioremap(soc_info->jtag_id_reg, SZ_4K);
  40. if (!base) {
  41. pr_err("Unable to map JTAG ID register\n");
  42. return -ENOMEM;
  43. }
  44. soc_info->jtag_id = __raw_readl(base);
  45. iounmap(base);
  46. variant = (soc_info->jtag_id & 0xf0000000) >> 28;
  47. part_no = (soc_info->jtag_id & 0x0ffff000) >> 12;
  48. for (i = 0, dip = soc_info->ids; i < soc_info->ids_num;
  49. i++, dip++)
  50. /* Don't care about the manufacturer right now */
  51. if ((dip->part_no == part_no) && (dip->variant == variant)) {
  52. soc_info->cpu_id = dip->cpu_id;
  53. pr_info("DaVinci %s variant 0x%x\n", dip->name,
  54. dip->variant);
  55. return 0;
  56. }
  57. pr_err("Unknown DaVinci JTAG ID 0x%x\n", soc_info->jtag_id);
  58. return -EINVAL;
  59. }
  60. void __init davinci_common_init(struct davinci_soc_info *soc_info)
  61. {
  62. int ret;
  63. if (!soc_info) {
  64. ret = -EINVAL;
  65. goto err;
  66. }
  67. memcpy(&davinci_soc_info, soc_info, sizeof(struct davinci_soc_info));
  68. if (davinci_soc_info.io_desc && (davinci_soc_info.io_desc_num > 0))
  69. iotable_init(davinci_soc_info.io_desc,
  70. davinci_soc_info.io_desc_num);
  71. /*
  72. * Normally devicemaps_init() would flush caches and tlb after
  73. * mdesc->map_io(), but we must also do it here because of the CPU
  74. * revision check below.
  75. */
  76. local_flush_tlb_all();
  77. flush_cache_all();
  78. if (!davinci_soc_info.reset)
  79. davinci_soc_info.reset = davinci_watchdog_reset;
  80. /*
  81. * We want to check CPU revision early for cpu_is_xxxx() macros.
  82. * IO space mapping must be initialized before we can do that.
  83. */
  84. ret = davinci_init_id(&davinci_soc_info);
  85. if (ret < 0)
  86. goto err;
  87. if (davinci_soc_info.cpu_clks) {
  88. ret = davinci_clk_init(davinci_soc_info.cpu_clks);
  89. if (ret != 0)
  90. goto err;
  91. }
  92. return;
  93. err:
  94. panic("davinci_common_init: SoC Initialization failed\n");
  95. }