From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sinan Akman Date: Thu, 04 Oct 2012 17:42:58 -0400 Subject: [U-Boot] [PATCH 1/3] Add nitrogen6x board In-Reply-To: <1349380149-8693-2-git-send-email-eric.nelson@boundarydevices.com> References: <1349380149-8693-1-git-send-email-eric.nelson@boundarydevices.com> <1349380149-8693-2-git-send-email-eric.nelson@boundarydevices.com> Message-ID: <506E02E2.4030506@writeme.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 10/04/2012 03:49 PM, Eric Nelson wrote: [..] > + > +static void setup_iomux_enet(void) > +{ > + gpio_direction_output(IMX_GPIO_NR(3, 23), 0); > + gpio_direction_output(IMX_GPIO_NR(6, 30), 1); > + gpio_direction_output(IMX_GPIO_NR(6, 25), 1); > + gpio_direction_output(IMX_GPIO_NR(6, 27), 1); > + gpio_direction_output(IMX_GPIO_NR(6, 28), 1); > + gpio_direction_output(IMX_GPIO_NR(6, 29), 1); > + imx_iomux_v3_setup_multiple_pads(enet_pads1, ARRAY_SIZE(enet_pads1)); > + gpio_direction_output(IMX_GPIO_NR(6, 24), 1); > + > + /* Need delay 10ms according to KSZ9021 spec */ > + udelay(1000 * 10); > + gpio_set_value(IMX_GPIO_NR(3, 23), 1); Don't you need a gpio_set_value(IMX_GPIO_NR(1, 27), 1); here for Nitrogen6x ? > + > + imx_iomux_v3_setup_multiple_pads(enet_pads2, ARRAY_SIZE(enet_pads2)); > +} > [...]