actux2.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. * (C) Copyright 2007
  3. * Michael Schwingen, michael@schwingen.org
  4. *
  5. * (C) Copyright 2006
  6. * Stefan Roese, DENX Software Engineering, sr@denx.de.
  7. *
  8. * (C) Copyright 2002
  9. * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net
  10. *
  11. * (C) Copyright 2002
  12. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  13. * Marius Groeger <mgroeger@sysgo.de>
  14. *
  15. * See file CREDITS for list of people who contributed to this
  16. * project.
  17. *
  18. * This program is free software; you can redistribute it and/or
  19. * modify it under the terms of the GNU General Public License as
  20. * published by the Free Software Foundation; either version 2 of
  21. * the License, or (at your option) any later version.
  22. *
  23. * This program is distributed in the hope that it will be useful,
  24. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. * GNU General Public License for more details.
  27. *
  28. * You should have received a copy of the GNU General Public License
  29. * along with this program; if not, write to the Free Software
  30. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  31. * MA 02111-1307 USA
  32. */
  33. #include <common.h>
  34. #include <command.h>
  35. #include <malloc.h>
  36. #include <asm/arch/ixp425.h>
  37. #include <asm/io.h>
  38. #include <miiphy.h>
  39. #include "actux2_hw.h"
  40. DECLARE_GLOBAL_DATA_PTR;
  41. int board_early_init_f(void)
  42. {
  43. /* CS1: IPAC-X */
  44. writel(0x94d10013, IXP425_EXP_CS1);
  45. /* CS5: Debug port */
  46. writel(0x9d520003, IXP425_EXP_CS5);
  47. /* CS6: HW release register */
  48. writel(0x81860001, IXP425_EXP_CS6);
  49. /* CS7: LEDs */
  50. writel(0x80900003, IXP425_EXP_CS7);
  51. return 0;
  52. }
  53. int board_init(void)
  54. {
  55. gd->bd->bi_arch_number = MACH_TYPE_ACTUX2;
  56. /* adress of boot parameters */
  57. gd->bd->bi_boot_params = 0x00000100;
  58. GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_IORST);
  59. GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_ETHRST);
  60. GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_DSR);
  61. GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_DCD);
  62. GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_IORST);
  63. GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_ETHRST);
  64. GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_DSR);
  65. GPIO_OUTPUT_SET(CONFIG_SYS_GPIO_DCD);
  66. /* Setup GPIOs for Interrupt inputs */
  67. GPIO_OUTPUT_DISABLE(CONFIG_SYS_GPIO_DBGINT);
  68. GPIO_OUTPUT_DISABLE(CONFIG_SYS_GPIO_ETHINT);
  69. /* Setup GPIOs for 33MHz clock output */
  70. GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_PCI_CLK);
  71. GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_EXTBUS_CLK);
  72. writel(0x011001FF, IXP425_GPIO_GPCLKR);
  73. udelay(533);
  74. GPIO_OUTPUT_SET(CONFIG_SYS_GPIO_IORST);
  75. GPIO_OUTPUT_SET(CONFIG_SYS_GPIO_ETHRST);
  76. ACTUX2_LED1(1);
  77. ACTUX2_LED2(0);
  78. ACTUX2_LED3(0);
  79. ACTUX2_LED4(0);
  80. return 0;
  81. }
  82. /*
  83. * Check Board Identity
  84. */
  85. int checkboard(void)
  86. {
  87. char buf[64];
  88. int i = getenv_f("serial#", buf, sizeof(buf));
  89. puts("Board: AcTux-2 rev.");
  90. putc(ACTUX2_BOARDREL + 'A' - 1);
  91. if (i > 0) {
  92. puts(", serial# ");
  93. puts(buf);
  94. }
  95. putc('\n');
  96. return 0;
  97. }
  98. int dram_init(void)
  99. {
  100. gd->ram_size = get_ram_size(CONFIG_SYS_SDRAM_BASE, 128<<20);
  101. return 0;
  102. }
  103. /*************************************************************************
  104. * get_board_rev() - setup to pass kernel board revision information
  105. * 0 = reserved
  106. * 1 = Rev. A
  107. * 2 = Rev. B
  108. *************************************************************************/
  109. u32 get_board_rev(void)
  110. {
  111. return ACTUX2_BOARDREL;
  112. }
  113. void reset_phy(void)
  114. {
  115. /* init IcPlus IP175C ethernet switch to native IP175C mode */
  116. miiphy_write("NPE0", 29, 31, 0x175C);
  117. }