am35xx-emac.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * Copyright (C) 2011 Ilya Yanok, Emcraft Systems
  3. *
  4. * Based on mach-omap2/board-am3517evm.c
  5. * Copyright (C) 2009 Texas Instruments Incorporated
  6. * Author: Ranjith Lohithakshan <ranjithl@ti.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2
  10. * published by the Free Software Foundation.
  11. *
  12. * This program is distributed "as is" WITHOUT ANY WARRANTY of any kind,
  13. * whether express or implied; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. */
  17. #include <linux/err.h>
  18. #include <linux/davinci_emac.h>
  19. #include "omap_device.h"
  20. #include "am35xx.h"
  21. #include "control.h"
  22. #include "am35xx-emac.h"
  23. static void am35xx_enable_emac_int(void)
  24. {
  25. u32 v;
  26. v = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
  27. v |= (AM35XX_CPGMAC_C0_RX_PULSE_CLR | AM35XX_CPGMAC_C0_TX_PULSE_CLR |
  28. AM35XX_CPGMAC_C0_MISC_PULSE_CLR | AM35XX_CPGMAC_C0_RX_THRESH_CLR);
  29. omap_ctrl_writel(v, AM35XX_CONTROL_LVL_INTR_CLEAR);
  30. omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); /* OCP barrier */
  31. }
  32. static void am35xx_disable_emac_int(void)
  33. {
  34. u32 v;
  35. v = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
  36. v |= (AM35XX_CPGMAC_C0_RX_PULSE_CLR | AM35XX_CPGMAC_C0_TX_PULSE_CLR);
  37. omap_ctrl_writel(v, AM35XX_CONTROL_LVL_INTR_CLEAR);
  38. omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); /* OCP barrier */
  39. }
  40. static struct emac_platform_data am35xx_emac_pdata = {
  41. .ctrl_reg_offset = AM35XX_EMAC_CNTRL_OFFSET,
  42. .ctrl_mod_reg_offset = AM35XX_EMAC_CNTRL_MOD_OFFSET,
  43. .ctrl_ram_offset = AM35XX_EMAC_CNTRL_RAM_OFFSET,
  44. .ctrl_ram_size = AM35XX_EMAC_CNTRL_RAM_SIZE,
  45. .hw_ram_addr = AM35XX_EMAC_HW_RAM_ADDR,
  46. .version = EMAC_VERSION_2,
  47. .interrupt_enable = am35xx_enable_emac_int,
  48. .interrupt_disable = am35xx_disable_emac_int,
  49. };
  50. static struct mdio_platform_data am35xx_mdio_pdata;
  51. static int __init omap_davinci_emac_dev_init(struct omap_hwmod *oh,
  52. void *pdata, int pdata_len)
  53. {
  54. struct platform_device *pdev;
  55. pdev = omap_device_build(oh->class->name, 0, oh, pdata, pdata_len);
  56. if (IS_ERR(pdev)) {
  57. WARN(1, "Can't build omap_device for %s:%s.\n",
  58. oh->class->name, oh->name);
  59. return PTR_ERR(pdev);
  60. }
  61. return 0;
  62. }
  63. void __init am35xx_emac_init(unsigned long mdio_bus_freq, u8 rmii_en)
  64. {
  65. struct omap_hwmod *oh;
  66. u32 v;
  67. int ret;
  68. oh = omap_hwmod_lookup("davinci_mdio");
  69. if (!oh) {
  70. pr_err("Could not find davinci_mdio hwmod\n");
  71. return;
  72. }
  73. am35xx_mdio_pdata.bus_freq = mdio_bus_freq;
  74. ret = omap_davinci_emac_dev_init(oh, &am35xx_mdio_pdata,
  75. sizeof(am35xx_mdio_pdata));
  76. if (ret) {
  77. pr_err("Could not build davinci_mdio hwmod device\n");
  78. return;
  79. }
  80. oh = omap_hwmod_lookup("davinci_emac");
  81. if (!oh) {
  82. pr_err("Could not find davinci_emac hwmod\n");
  83. return;
  84. }
  85. am35xx_emac_pdata.rmii_en = rmii_en;
  86. ret = omap_davinci_emac_dev_init(oh, &am35xx_emac_pdata,
  87. sizeof(am35xx_emac_pdata));
  88. if (ret) {
  89. pr_err("Could not build davinci_emac hwmod device\n");
  90. return;
  91. }
  92. v = omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET);
  93. v &= ~AM35XX_CPGMACSS_SW_RST;
  94. omap_ctrl_writel(v, AM35XX_CONTROL_IP_SW_RESET);
  95. omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET); /* OCP barrier */
  96. }