spear310.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * (C) Copyright 2009
  3. * Ryan Chen, ST Micoelectronics, ryan.chen@st.com.
  4. * Vipin Kumar, ST Micoelectronics, vipin.kumar@st.com.
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #include <common.h>
  9. #include <miiphy.h>
  10. #include <netdev.h>
  11. #include <nand.h>
  12. #include <asm/io.h>
  13. #include <linux/mtd/fsmc_nand.h>
  14. #include <asm/arch/hardware.h>
  15. #include <asm/arch/spr_defs.h>
  16. #include <asm/arch/spr_misc.h>
  17. static struct nand_chip nand_chip[CONFIG_SYS_MAX_NAND_DEVICE];
  18. int board_init(void)
  19. {
  20. return spear_board_init(MACH_TYPE_SPEAR310);
  21. }
  22. /*
  23. * board_nand_init - Board specific NAND initialization
  24. * @nand: mtd private chip structure
  25. *
  26. * Called by nand_init_chip to initialize the board specific functions
  27. */
  28. void board_nand_init()
  29. {
  30. struct misc_regs *const misc_regs_p =
  31. (struct misc_regs *)CONFIG_SPEAR_MISCBASE;
  32. struct nand_chip *nand = &nand_chip[0];
  33. #if defined(CONFIG_NAND_FSMC)
  34. if (((readl(&misc_regs_p->auto_cfg_reg) & MISC_SOCCFGMSK) ==
  35. MISC_SOCCFG30) ||
  36. ((readl(&misc_regs_p->auto_cfg_reg) & MISC_SOCCFGMSK) ==
  37. MISC_SOCCFG31)) {
  38. fsmc_nand_init(nand);
  39. }
  40. #endif
  41. return;
  42. }
  43. int board_eth_init(bd_t *bis)
  44. {
  45. int ret = 0;
  46. #if defined(CONFIG_ETH_DESIGNWARE)
  47. u32 interface = PHY_INTERFACE_MODE_MII;
  48. if (designware_initialize(CONFIG_SPEAR_ETHBASE, interface) >= 0)
  49. ret++;
  50. #endif
  51. #if defined(CONFIG_MACB)
  52. if (macb_eth_initialize(0, (void *)CONFIG_SYS_MACB0_BASE,
  53. CONFIG_MACB0_PHY) >= 0)
  54. ret++;
  55. if (macb_eth_initialize(1, (void *)CONFIG_SYS_MACB1_BASE,
  56. CONFIG_MACB1_PHY) >= 0)
  57. ret++;
  58. if (macb_eth_initialize(2, (void *)CONFIG_SYS_MACB2_BASE,
  59. CONFIG_MACB2_PHY) >= 0)
  60. ret++;
  61. if (macb_eth_initialize(3, (void *)CONFIG_SYS_MACB3_BASE,
  62. CONFIG_MACB3_PHY) >= 0)
  63. ret++;
  64. #endif
  65. return ret;
  66. }