From cfee45a3ef2a592d130573ce3b7d8bcfe056060b Mon Sep 17 00:00:00 2001 From: Raptor Engineering Development Team Date: Mon, 22 Jan 2018 03:00:10 -0600 Subject: =?UTF-8?q?Move=20U-Boot=20control=20transfer=20to=20kernel=20GPIO?= =?UTF-8?q?=20on=20Talos=E2=84=A2=20II=20systems?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/bootm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/bootm.c b/common/bootm.c index 24f117c86d..9f4493feeb 100644 --- a/common/bootm.c +++ b/common/bootm.c @@ -709,11 +709,11 @@ int do_bootm_states(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[], * Set U-Boot complete GPIO */ { - uint32_t* gpio_ctl_reg = 0x1e78007c; - uint32_t* gpio_data_reg = 0x1e780078; + uint32_t* gpio_ctl_reg = 0x1e780084; + uint32_t* gpio_data_reg = 0x1e780080; - *gpio_ctl_reg |= 0x00400000; - *gpio_data_reg &= ~0x00400000; + *gpio_ctl_reg |= 0x00800000; + *gpio_data_reg &= ~0x00800000; } /* Now run the OS! We hope this doesn't return */ -- cgit v1.2.1