Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011-2012 |
| 3 | * Gerald Kerma <dreagle@doukki.net> |
Luka Perkov | 3fdf759 | 2012-12-03 03:24:15 +0000 | [diff] [blame] | 4 | * Luka Perkov <luka@openwrt.org> |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 5 | * Simon Baatz <gmbnomis@gmail.com> |
| 6 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | #include <miiphy.h> |
Simon Baatz | a045234 | 2012-07-20 09:59:14 +0000 | [diff] [blame] | 12 | #include <asm/io.h> |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 13 | #include <asm/arch/cpu.h> |
| 14 | #include <asm/arch/kirkwood.h> |
| 15 | #include <asm/arch/mpp.h> |
| 16 | #include "ib62x0.h" |
| 17 | |
| 18 | DECLARE_GLOBAL_DATA_PTR; |
| 19 | |
| 20 | int board_early_init_f(void) |
| 21 | { |
| 22 | /* |
| 23 | * default gpio configuration |
| 24 | * There are maximum 64 gpios controlled through 2 sets of registers |
| 25 | * the below configuration configures mainly initial LED status |
| 26 | */ |
| 27 | kw_config_gpio(IB62x0_OE_VAL_LOW, |
| 28 | IB62x0_OE_VAL_HIGH, |
| 29 | IB62x0_OE_LOW, IB62x0_OE_HIGH); |
| 30 | |
Simon Baatz | a045234 | 2012-07-20 09:59:14 +0000 | [diff] [blame] | 31 | /* Set SATA activity LEDs to default off */ |
| 32 | writel(MVSATAHC_LED_POLARITY_CTRL, MVSATAHC_LED_CONF_REG); |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 33 | /* Multi-Purpose Pins Functionality configuration */ |
Albert ARIBAUD | 9d86f0c | 2012-11-26 11:27:36 +0000 | [diff] [blame] | 34 | static const u32 kwmpp_config[] = { |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 35 | MPP0_NF_IO2, |
| 36 | MPP1_NF_IO3, |
| 37 | MPP2_NF_IO4, |
| 38 | MPP3_NF_IO5, |
| 39 | MPP4_NF_IO6, |
| 40 | MPP5_NF_IO7, |
| 41 | MPP6_SYSRST_OUTn, |
| 42 | MPP8_TW_SDA, |
| 43 | MPP9_TW_SCK, |
| 44 | MPP10_UART0_TXD, |
| 45 | MPP11_UART0_RXD, |
| 46 | MPP18_NF_IO0, |
| 47 | MPP19_NF_IO1, |
| 48 | MPP20_SATA1_ACTn, |
| 49 | MPP21_SATA0_ACTn, |
| 50 | MPP22_GPIO, /* Power LED red */ |
| 51 | MPP24_GPIO, /* Power off device */ |
| 52 | MPP25_GPIO, /* Power LED green */ |
| 53 | MPP27_GPIO, /* USB transfer LED */ |
| 54 | MPP28_GPIO, /* Reset button */ |
| 55 | MPP29_GPIO, /* USB Copy button */ |
| 56 | 0 |
| 57 | }; |
Valentin Longchamp | 8468363 | 2012-06-01 01:31:00 +0000 | [diff] [blame] | 58 | kirkwood_mpp_conf(kwmpp_config, NULL); |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 59 | return 0; |
| 60 | } |
| 61 | |
| 62 | int board_init(void) |
| 63 | { |
| 64 | /* adress of boot parameters */ |
| 65 | gd->bd->bi_boot_params = kw_sdram_bar(0) + 0x100; |
| 66 | |
| 67 | return 0; |
| 68 | } |