Bin Meng | afee3fb | 2015-02-02 22:35:28 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com> |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Bin Meng | 316fd39 | 2015-09-03 05:37:25 -0700 | [diff] [blame] | 8 | #include <asm/io.h> |
| 9 | #include <asm/arch/device.h> |
Bin Meng | 316fd39 | 2015-09-03 05:37:25 -0700 | [diff] [blame] | 10 | #include <asm/arch/quark.h> |
Bin Meng | afee3fb | 2015-02-02 22:35:28 +0800 | [diff] [blame] | 11 | |
Bin Meng | afee3fb | 2015-02-02 22:35:28 +0800 | [diff] [blame] | 12 | int board_early_init_f(void) |
| 13 | { |
| 14 | return 0; |
| 15 | } |
| 16 | |
Bin Meng | 316fd39 | 2015-09-03 05:37:25 -0700 | [diff] [blame] | 17 | /* |
| 18 | * Intel Galileo gen2 board uses GPIO Resume Well bank pin0 as the PERST# pin. |
| 19 | * |
| 20 | * We cannot use any public GPIO APIs in <asm-generic/gpio.h> to control this |
| 21 | * pin, as these APIs will eventually call into gpio_ich6_ofdata_to_platdata() |
| 22 | * in the Intel ICH6 GPIO driver where it calls PCI configuration space access |
| 23 | * APIs which will trigger PCI enumeration process. |
| 24 | * |
| 25 | * Check <asm/arch-quark/quark.h> for more details. |
| 26 | */ |
| 27 | void board_assert_perst(void) |
| 28 | { |
| 29 | u32 base, port, val; |
| 30 | |
| 31 | /* retrieve the GPIO IO base */ |
Bin Meng | 2b7ff26 | 2016-02-01 01:40:48 -0800 | [diff] [blame] | 32 | qrk_pci_read_config_dword(QUARK_LEGACY_BRIDGE, LB_GBA, &base); |
Bin Meng | 316fd39 | 2015-09-03 05:37:25 -0700 | [diff] [blame] | 33 | base = (base & 0xffff) & ~0x7f; |
| 34 | |
| 35 | /* enable the pin */ |
| 36 | port = base + 0x20; |
| 37 | val = inl(port); |
| 38 | val |= (1 << 0); |
| 39 | outl(val, port); |
| 40 | |
| 41 | /* configure the pin as output */ |
| 42 | port = base + 0x24; |
| 43 | val = inl(port); |
| 44 | val &= ~(1 << 0); |
| 45 | outl(val, port); |
| 46 | |
| 47 | /* pull it down (assert) */ |
| 48 | port = base + 0x28; |
| 49 | val = inl(port); |
| 50 | val &= ~(1 << 0); |
| 51 | outl(val, port); |
| 52 | } |
| 53 | |
| 54 | void board_deassert_perst(void) |
| 55 | { |
| 56 | u32 base, port, val; |
| 57 | |
| 58 | /* retrieve the GPIO IO base */ |
Bin Meng | 2b7ff26 | 2016-02-01 01:40:48 -0800 | [diff] [blame] | 59 | qrk_pci_read_config_dword(QUARK_LEGACY_BRIDGE, LB_GBA, &base); |
Bin Meng | 316fd39 | 2015-09-03 05:37:25 -0700 | [diff] [blame] | 60 | base = (base & 0xffff) & ~0x7f; |
| 61 | |
| 62 | /* pull it up (de-assert) */ |
| 63 | port = base + 0x28; |
| 64 | val = inl(port); |
| 65 | val |= (1 << 0); |
| 66 | outl(val, port); |
| 67 | } |