Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2007-2008 |
Stelian Pop | 5ee0c7f | 2011-11-01 00:00:39 +0100 | [diff] [blame] | 3 | * Stelian Pop <stelian@popies.net> |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 4 | * Lead Tech Design <www.leadtechdesign.com> |
| 5 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Xu, Hong | 0a61494 | 2011-07-31 22:49:00 +0000 | [diff] [blame] | 10 | #include <asm/io.h> |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 11 | #include <asm/arch/at91sam9261.h> |
| 12 | #include <asm/arch/at91sam9261_matrix.h> |
| 13 | #include <asm/arch/at91sam9_smc.h> |
Jean-Christophe PLAGNIOL-VILLARD | 6b0b3db | 2009-03-21 21:07:59 +0100 | [diff] [blame] | 14 | #include <asm/arch/at91_common.h> |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 15 | #include <asm/arch/at91_rstc.h> |
Jean-Christophe PLAGNIOL-VILLARD | 23164f1 | 2009-04-16 21:30:44 +0200 | [diff] [blame] | 16 | #include <asm/arch/clk.h> |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 17 | #include <asm/arch/gpio.h> |
Stelian Pop | 905ed22 | 2008-05-08 14:52:30 +0200 | [diff] [blame] | 18 | #include <lcd.h> |
| 19 | #include <atmel_lcdc.h> |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 20 | #if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_DRIVER_DM9000) |
| 21 | #include <net.h> |
Remy Bohmer | 7eefd92 | 2009-05-02 21:49:18 +0200 | [diff] [blame] | 22 | #include <netdev.h> |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 23 | #endif |
Simon Glass | 0ffb9d6 | 2017-05-31 19:47:48 -0600 | [diff] [blame^] | 24 | #include <asm/mach-types.h> |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 25 | |
| 26 | DECLARE_GLOBAL_DATA_PTR; |
| 27 | |
| 28 | /* ------------------------------------------------------------------------- */ |
| 29 | /* |
| 30 | * Miscelaneous platform dependent initialisations |
| 31 | */ |
| 32 | |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 33 | #ifdef CONFIG_CMD_NAND |
| 34 | static void at91sam9261ek_nand_hw_init(void) |
| 35 | { |
Xu, Hong | 0a61494 | 2011-07-31 22:49:00 +0000 | [diff] [blame] | 36 | struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC; |
| 37 | struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX; |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 38 | unsigned long csa; |
| 39 | |
| 40 | /* Enable CS3 */ |
Xu, Hong | 0a61494 | 2011-07-31 22:49:00 +0000 | [diff] [blame] | 41 | csa = readl(&matrix->ebicsa); |
| 42 | csa |= AT91_MATRIX_CS3A_SMC_SMARTMEDIA; |
| 43 | |
| 44 | writel(csa, &matrix->ebicsa); |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 45 | |
| 46 | /* Configure SMC CS3 for NAND/SmartMedia */ |
Sedji Gaouaou | 97a031b | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 47 | #ifdef CONFIG_AT91SAM9G10EK |
Xu, Hong | 0a61494 | 2011-07-31 22:49:00 +0000 | [diff] [blame] | 48 | writel(AT91_SMC_SETUP_NWE(2) | AT91_SMC_SETUP_NCS_WR(0) | |
| 49 | AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(0), |
| 50 | &smc->cs[3].setup); |
| 51 | writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(7) | |
| 52 | AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(7), |
| 53 | &smc->cs[3].pulse); |
| 54 | writel(AT91_SMC_CYCLE_NWE(7) | AT91_SMC_CYCLE_NRD(7), |
| 55 | &smc->cs[3].cycle); |
Sedji Gaouaou | 97a031b | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 56 | #else |
Xu, Hong | 0a61494 | 2011-07-31 22:49:00 +0000 | [diff] [blame] | 57 | writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) | |
| 58 | AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0), |
| 59 | &smc->cs[3].setup); |
| 60 | writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) | |
| 61 | AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3), |
| 62 | &smc->cs[3].pulse); |
| 63 | writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5), |
| 64 | &smc->cs[3].cycle); |
Sedji Gaouaou | 97a031b | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 65 | #endif |
Xu, Hong | 0a61494 | 2011-07-31 22:49:00 +0000 | [diff] [blame] | 66 | writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE | |
| 67 | AT91_SMC_MODE_EXNW_DISABLE | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 68 | #ifdef CONFIG_SYS_NAND_DBW_16 |
Xu, Hong | 0a61494 | 2011-07-31 22:49:00 +0000 | [diff] [blame] | 69 | AT91_SMC_MODE_DBW_16 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 70 | #else /* CONFIG_SYS_NAND_DBW_8 */ |
Xu, Hong | 0a61494 | 2011-07-31 22:49:00 +0000 | [diff] [blame] | 71 | AT91_SMC_MODE_DBW_8 | |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 72 | #endif |
Xu, Hong | 0a61494 | 2011-07-31 22:49:00 +0000 | [diff] [blame] | 73 | AT91_SMC_MODE_TDF_CYCLE(2), |
| 74 | &smc->cs[3].mode); |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 75 | |
Wenyou Yang | 78f8976 | 2016-02-03 10:16:50 +0800 | [diff] [blame] | 76 | at91_periph_clk_enable(ATMEL_ID_PIOC); |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 77 | |
| 78 | /* Configure RDY/BSY */ |
Jean-Christophe PLAGNIOL-VILLARD | c9539ba | 2009-03-22 10:22:34 +0100 | [diff] [blame] | 79 | at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1); |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 80 | |
| 81 | /* Enable NandFlash */ |
Jean-Christophe PLAGNIOL-VILLARD | c9539ba | 2009-03-22 10:22:34 +0100 | [diff] [blame] | 82 | at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1); |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 83 | |
| 84 | at91_set_A_periph(AT91_PIN_PC0, 0); /* NANDOE */ |
| 85 | at91_set_A_periph(AT91_PIN_PC1, 0); /* NANDWE */ |
| 86 | } |
| 87 | #endif |
| 88 | |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 89 | #ifdef CONFIG_DRIVER_DM9000 |
| 90 | static void at91sam9261ek_dm9000_hw_init(void) |
| 91 | { |
Xu, Hong | 0a61494 | 2011-07-31 22:49:00 +0000 | [diff] [blame] | 92 | struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC; |
| 93 | |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 94 | /* Configure SMC CS2 for DM9000 */ |
Sedji Gaouaou | 97a031b | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 95 | #ifdef CONFIG_AT91SAM9G10EK |
Xu, Hong | 0a61494 | 2011-07-31 22:49:00 +0000 | [diff] [blame] | 96 | writel(AT91_SMC_SETUP_NWE(3) | AT91_SMC_SETUP_NCS_WR(0) | |
| 97 | AT91_SMC_SETUP_NRD(3) | AT91_SMC_SETUP_NCS_RD(0), |
| 98 | &smc->cs[2].setup); |
| 99 | writel(AT91_SMC_PULSE_NWE(6) | AT91_SMC_PULSE_NCS_WR(8) | |
| 100 | AT91_SMC_PULSE_NRD(6) | AT91_SMC_PULSE_NCS_RD(8), |
| 101 | &smc->cs[2].pulse); |
| 102 | writel(AT91_SMC_CYCLE_NWE(20) | AT91_SMC_CYCLE_NRD(20), |
| 103 | &smc->cs[2].cycle); |
| 104 | writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE | |
| 105 | AT91_SMC_MODE_EXNW_DISABLE | |
| 106 | AT91_SMC_MODE_BAT | AT91_SMC_MODE_DBW_16 | |
| 107 | AT91_SMC_MODE_TDF_CYCLE(1), |
| 108 | &smc->cs[2].mode); |
Sedji Gaouaou | 97a031b | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 109 | #else |
Xu, Hong | 0a61494 | 2011-07-31 22:49:00 +0000 | [diff] [blame] | 110 | writel(AT91_SMC_SETUP_NWE(3) | AT91_SMC_SETUP_NCS_WR(0) | |
| 111 | AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(0), |
| 112 | &smc->cs[2].setup); |
| 113 | writel(AT91_SMC_PULSE_NWE(4) | AT91_SMC_PULSE_NCS_WR(8) | |
| 114 | AT91_SMC_PULSE_NRD(4) | AT91_SMC_PULSE_NCS_RD(8), |
| 115 | &smc->cs[2].pulse); |
| 116 | writel(AT91_SMC_CYCLE_NWE(16) | AT91_SMC_CYCLE_NRD(16), |
| 117 | &smc->cs[2].cycle); |
| 118 | writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE | |
| 119 | AT91_SMC_MODE_EXNW_DISABLE | |
| 120 | AT91_SMC_MODE_BAT | AT91_SMC_MODE_DBW_16 | |
| 121 | AT91_SMC_MODE_TDF_CYCLE(1), |
| 122 | &smc->cs[2].mode); |
Sedji Gaouaou | 97a031b | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 123 | #endif |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 124 | |
| 125 | /* Configure Reset signal as output */ |
| 126 | at91_set_gpio_output(AT91_PIN_PC10, 0); |
| 127 | |
| 128 | /* Configure Interrupt pin as input, no pull-up */ |
| 129 | at91_set_gpio_input(AT91_PIN_PC11, 0); |
| 130 | } |
| 131 | #endif |
| 132 | |
Stelian Pop | 905ed22 | 2008-05-08 14:52:30 +0200 | [diff] [blame] | 133 | #ifdef CONFIG_LCD |
| 134 | vidinfo_t panel_info = { |
Jeroen Hofstee | e887b72 | 2014-06-10 00:16:23 +0200 | [diff] [blame] | 135 | .vl_col = 240, |
| 136 | .vl_row = 320, |
| 137 | .vl_clk = 4965000, |
| 138 | .vl_sync = ATMEL_LCDC_INVLINE_INVERTED | |
| 139 | ATMEL_LCDC_INVFRAME_INVERTED, |
| 140 | .vl_bpix = 3, |
| 141 | .vl_tft = 1, |
| 142 | .vl_hsync_len = 5, |
| 143 | .vl_left_margin = 1, |
| 144 | .vl_right_margin = 33, |
| 145 | .vl_vsync_len = 1, |
| 146 | .vl_upper_margin = 1, |
| 147 | .vl_lower_margin = 0, |
| 148 | .mmio = ATMEL_BASE_LCDC, |
Stelian Pop | 905ed22 | 2008-05-08 14:52:30 +0200 | [diff] [blame] | 149 | }; |
| 150 | |
| 151 | void lcd_enable(void) |
| 152 | { |
| 153 | at91_set_gpio_value(AT91_PIN_PA12, 0); /* power up */ |
| 154 | } |
| 155 | |
| 156 | void lcd_disable(void) |
| 157 | { |
| 158 | at91_set_gpio_value(AT91_PIN_PA12, 1); /* power down */ |
| 159 | } |
| 160 | |
| 161 | static void at91sam9261ek_lcd_hw_init(void) |
| 162 | { |
| 163 | at91_set_A_periph(AT91_PIN_PB1, 0); /* LCDHSYNC */ |
| 164 | at91_set_A_periph(AT91_PIN_PB2, 0); /* LCDDOTCK */ |
| 165 | at91_set_A_periph(AT91_PIN_PB3, 0); /* LCDDEN */ |
| 166 | at91_set_A_periph(AT91_PIN_PB4, 0); /* LCDCC */ |
| 167 | at91_set_A_periph(AT91_PIN_PB7, 0); /* LCDD2 */ |
| 168 | at91_set_A_periph(AT91_PIN_PB8, 0); /* LCDD3 */ |
| 169 | at91_set_A_periph(AT91_PIN_PB9, 0); /* LCDD4 */ |
| 170 | at91_set_A_periph(AT91_PIN_PB10, 0); /* LCDD5 */ |
| 171 | at91_set_A_periph(AT91_PIN_PB11, 0); /* LCDD6 */ |
| 172 | at91_set_A_periph(AT91_PIN_PB12, 0); /* LCDD7 */ |
| 173 | at91_set_A_periph(AT91_PIN_PB15, 0); /* LCDD10 */ |
| 174 | at91_set_A_periph(AT91_PIN_PB16, 0); /* LCDD11 */ |
| 175 | at91_set_A_periph(AT91_PIN_PB17, 0); /* LCDD12 */ |
| 176 | at91_set_A_periph(AT91_PIN_PB18, 0); /* LCDD13 */ |
| 177 | at91_set_A_periph(AT91_PIN_PB19, 0); /* LCDD14 */ |
| 178 | at91_set_A_periph(AT91_PIN_PB20, 0); /* LCDD15 */ |
| 179 | at91_set_B_periph(AT91_PIN_PB23, 0); /* LCDD18 */ |
| 180 | at91_set_B_periph(AT91_PIN_PB24, 0); /* LCDD19 */ |
| 181 | at91_set_B_periph(AT91_PIN_PB25, 0); /* LCDD20 */ |
| 182 | at91_set_B_periph(AT91_PIN_PB26, 0); /* LCDD21 */ |
| 183 | at91_set_B_periph(AT91_PIN_PB27, 0); /* LCDD22 */ |
| 184 | at91_set_B_periph(AT91_PIN_PB28, 0); /* LCDD23 */ |
| 185 | |
Wenyou Yang | 78f8976 | 2016-02-03 10:16:50 +0800 | [diff] [blame] | 186 | at91_system_clk_enable(AT91_PMC_HCK1); |
Stelian Pop | 905ed22 | 2008-05-08 14:52:30 +0200 | [diff] [blame] | 187 | |
Xu, Hong | 0a61494 | 2011-07-31 22:49:00 +0000 | [diff] [blame] | 188 | /* For 9G10EK, let U-Boot allocate the framebuffer in SDRAM */ |
| 189 | #ifdef CONFIG_AT91SAM9261EK |
| 190 | gd->fb_base = ATMEL_BASE_SRAM; |
Sedji Gaouaou | 97a031b | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 191 | #endif |
Stelian Pop | 905ed22 | 2008-05-08 14:52:30 +0200 | [diff] [blame] | 192 | } |
Haavard Skinnemoen | ddbcf95 | 2008-09-01 16:21:22 +0200 | [diff] [blame] | 193 | |
| 194 | #ifdef CONFIG_LCD_INFO |
| 195 | #include <nand.h> |
| 196 | #include <version.h> |
| 197 | |
| 198 | void lcd_show_board_info(void) |
| 199 | { |
| 200 | ulong dram_size, nand_size; |
| 201 | int i; |
| 202 | char temp[32]; |
| 203 | |
| 204 | lcd_printf ("%s\n", U_BOOT_VERSION); |
| 205 | lcd_printf ("(C) 2008 ATMEL Corp\n"); |
| 206 | lcd_printf ("at91support@atmel.com\n"); |
| 207 | lcd_printf ("%s CPU at %s MHz\n", |
Xu, Hong | 0a61494 | 2011-07-31 22:49:00 +0000 | [diff] [blame] | 208 | ATMEL_CPU_NAME, |
Jean-Christophe PLAGNIOL-VILLARD | 23164f1 | 2009-04-16 21:30:44 +0200 | [diff] [blame] | 209 | strmhz(temp, get_cpu_clk_rate())); |
Haavard Skinnemoen | ddbcf95 | 2008-09-01 16:21:22 +0200 | [diff] [blame] | 210 | |
| 211 | dram_size = 0; |
| 212 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) |
| 213 | dram_size += gd->bd->bi_dram[i].size; |
| 214 | nand_size = 0; |
| 215 | for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++) |
Scott Wood | 2c1b7e1 | 2016-05-30 13:57:55 -0500 | [diff] [blame] | 216 | nand_size += nand_info[i]->size; |
Haavard Skinnemoen | ddbcf95 | 2008-09-01 16:21:22 +0200 | [diff] [blame] | 217 | lcd_printf (" %ld MB SDRAM, %ld MB NAND\n", |
| 218 | dram_size >> 20, |
| 219 | nand_size >> 20 ); |
| 220 | } |
| 221 | #endif /* CONFIG_LCD_INFO */ |
Stelian Pop | 905ed22 | 2008-05-08 14:52:30 +0200 | [diff] [blame] | 222 | #endif |
| 223 | |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 224 | int board_init(void) |
| 225 | { |
Sedji Gaouaou | 97a031b | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 226 | #ifdef CONFIG_AT91SAM9G10EK |
| 227 | /* arch number of AT91SAM9G10EK-Board */ |
| 228 | gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9G10EK; |
| 229 | #else |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 230 | /* arch number of AT91SAM9261EK-Board */ |
| 231 | gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9261EK; |
Sedji Gaouaou | 97a031b | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 232 | #endif |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 233 | /* adress of boot parameters */ |
Xu, Hong | 0a61494 | 2011-07-31 22:49:00 +0000 | [diff] [blame] | 234 | gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 235 | |
Xu, Hong | 0a61494 | 2011-07-31 22:49:00 +0000 | [diff] [blame] | 236 | at91_seriald_hw_init(); |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 237 | #ifdef CONFIG_CMD_NAND |
| 238 | at91sam9261ek_nand_hw_init(); |
| 239 | #endif |
| 240 | #ifdef CONFIG_HAS_DATAFLASH |
Jean-Christophe PLAGNIOL-VILLARD | 12dcdef | 2009-03-21 21:07:59 +0100 | [diff] [blame] | 241 | at91_spi0_hw_init(1 << 0); |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 242 | #endif |
| 243 | #ifdef CONFIG_DRIVER_DM9000 |
| 244 | at91sam9261ek_dm9000_hw_init(); |
| 245 | #endif |
Stelian Pop | 905ed22 | 2008-05-08 14:52:30 +0200 | [diff] [blame] | 246 | #ifdef CONFIG_LCD |
| 247 | at91sam9261ek_lcd_hw_init(); |
| 248 | #endif |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 249 | return 0; |
| 250 | } |
| 251 | |
Remy Bohmer | 7eefd92 | 2009-05-02 21:49:18 +0200 | [diff] [blame] | 252 | #ifdef CONFIG_DRIVER_DM9000 |
Wolfgang Denk | e5032c8 | 2009-12-07 21:06:40 +0100 | [diff] [blame] | 253 | int board_eth_init(bd_t *bis) |
| 254 | { |
Remy Bohmer | 7eefd92 | 2009-05-02 21:49:18 +0200 | [diff] [blame] | 255 | return dm9000_initialize(bis); |
Wolfgang Denk | e5032c8 | 2009-12-07 21:06:40 +0100 | [diff] [blame] | 256 | } |
| 257 | #endif |
| 258 | |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 259 | int dram_init(void) |
| 260 | { |
Xu, Hong | 0a61494 | 2011-07-31 22:49:00 +0000 | [diff] [blame] | 261 | gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE, |
| 262 | CONFIG_SYS_SDRAM_SIZE); |
| 263 | |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 264 | return 0; |
| 265 | } |
| 266 | |
| 267 | #ifdef CONFIG_RESET_PHY_R |
| 268 | void reset_phy(void) |
| 269 | { |
| 270 | #ifdef CONFIG_DRIVER_DM9000 |
| 271 | /* |
| 272 | * Initialize ethernet HW addr prior to starting Linux, |
| 273 | * needed for nfsroot |
| 274 | */ |
Joe Hershberger | 3dbe17e | 2015-03-22 17:09:06 -0500 | [diff] [blame] | 275 | eth_init(); |
Stelian Pop | 61e69d7 | 2008-05-08 20:52:22 +0200 | [diff] [blame] | 276 | #endif |
| 277 | } |
| 278 | #endif |