diff options
author | Karlheinz Jerg <karlheinz.jerg@keymile.com> | 2013-01-21 03:55:16 +0000 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2013-02-15 17:47:19 -0600 |
commit | 1eb95ebe0d466d793fcf1f689fc20f6cc83c7fe1 (patch) | |
tree | c0c3e5ed94dea753ff9ba0cefcb2a70387d92d8e /board/keymile/km83xx | |
parent | cf976ce478b8d7fd62184eac24caa1d31c7d8c55 (diff) | |
download | u-boot-imx-1eb95ebe0d466d793fcf1f689fc20f6cc83c7fe1.zip u-boot-imx-1eb95ebe0d466d793fcf1f689fc20f6cc83c7fe1.tar.gz u-boot-imx-1eb95ebe0d466d793fcf1f689fc20f6cc83c7fe1.tar.bz2 |
km82xx, km83xx: move ethernet_present() from common to cpu specific
For kmvect1 we need a special solution and for km_arm boards we already
have. So move the common code to the architectur specific file.
Signed-off-by: Karlheinz Jerg <karlheinz.jerg@keymile.com>
Signed-off-by: Holger Brunck <holger.brunck@keymile.com>
Diffstat (limited to 'board/keymile/km83xx')
-rw-r--r-- | board/keymile/km83xx/km83xx.c | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/board/keymile/km83xx/km83xx.c b/board/keymile/km83xx/km83xx.c index 83a8753..b027173 100644 --- a/board/keymile/km83xx/km83xx.c +++ b/board/keymile/km83xx/km83xx.c @@ -133,6 +133,28 @@ const uint upma_table[] = { }; #endif +static int piggy_present(void) +{ + struct km_bec_fpga __iomem *base = + (struct km_bec_fpga __iomem *)CONFIG_SYS_KMBEC_FPGA_BASE; + + return in_8(&base->bprth) & PIGGY_PRESENT; +} + +#if defined(CONFIG_KMVECT1) +int ethernet_present(void) +{ + /* ethernet port connected to simple switch without piggy */ + return 1; +} +#else +int ethernet_present(void) +{ + return piggy_present(); +} +#endif + + int board_early_init_r(void) { struct km_bec_fpga *base = @@ -280,7 +302,7 @@ int checkboard(void) { puts("Board: Keymile " CONFIG_KM_BOARD_NAME); - if (ethernet_present()) + if (piggy_present()) puts(" with PIGGY."); puts("\n"); return 0; |