blob: 32be579155a6c24d786234de5bc1256a8b604584 [file] [log] [blame]
Furquan Shaikhda01d942014-03-19 14:31:23 -07001/*
2 * This file is part of the coreboot project.
3 *
Deepa Dinamani2c041172014-05-15 17:14:12 -07004 * Copyright 2014 Google Inc.
Furquan Shaikhda01d942014-03-19 14:31:23 -07005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
Deepa Dinamani2c041172014-05-15 17:14:12 -070020#include <arch/cache.h>
Vadim Bendebury1de971d2014-08-07 15:20:21 -070021#include <boardid.h>
Furquan Shaikhda01d942014-03-19 14:31:23 -070022#include <boot/coreboot_tables.h>
Vadim Bendeburyc6d30402014-08-01 17:36:45 -070023#include <console/console.h>
Vadim Bendeburyc6d30402014-08-01 17:36:45 -070024#include <delay.h>
Vadim Bendebury1de971d2014-08-07 15:20:21 -070025#include <device/device.h>
Julius Wernereaa9c452014-09-24 15:40:49 -070026#include <gpio.h>
Julius Werner73d1ed62014-10-20 13:20:49 -070027#include <soc/clock.h>
Julius Werner73d1ed62014-10-20 13:20:49 -070028#include <soc/usb.h>
Vadim Bendeburyc6d30402014-08-01 17:36:45 -070029#include <string.h>
Julius Wernerec5e5e02014-08-20 15:29:56 -070030#include <symbols.h>
Vadim Bendeburyc6d30402014-08-01 17:36:45 -070031
Deepa Dinamani2c041172014-05-15 17:14:12 -070032/* convenient shorthand (in MB) */
Julius Wernerec5e5e02014-08-20 15:29:56 -070033#define DRAM_START ((uintptr_t)_dram / MiB)
Deepa Dinamani2c041172014-05-15 17:14:12 -070034#define DRAM_SIZE (CONFIG_DRAM_SIZE_MB)
35#define DRAM_END (DRAM_START + DRAM_SIZE)
36
37/* DMA memory for drivers */
Julius Wernerec5e5e02014-08-20 15:29:56 -070038#define DMA_START ((uintptr_t)_dma_coherent / MiB)
39#define DMA_SIZE (_dma_coherent_size / MiB)
Julius Werner028cba92014-05-30 18:01:44 -070040
Vadim Bendeburyf6ad8322014-06-24 07:26:03 -070041#define USB_ENABLE_GPIO 51
42
Julius Werner028cba92014-05-30 18:01:44 -070043static void setup_usb(void)
44{
Vadim Bendeburyf752d012014-07-10 15:24:18 -070045#if !CONFIG_BOARD_VARIANT_AP148
Vadim Bendeburyf6ad8322014-06-24 07:26:03 -070046 gpio_tlmm_config_set(USB_ENABLE_GPIO, FUNC_SEL_GPIO,
47 GPIO_PULL_UP, GPIO_10MA, GPIO_ENABLE);
Julius Wernereaa9c452014-09-24 15:40:49 -070048 gpio_set(USB_ENABLE_GPIO, 1);
Vadim Bendeburyf752d012014-07-10 15:24:18 -070049#endif
Julius Werner028cba92014-05-30 18:01:44 -070050 usb_clock_config();
51
52 setup_usb_host1();
Julius Werner028cba92014-05-30 18:01:44 -070053}
Deepa Dinamani2c041172014-05-15 17:14:12 -070054
55static void setup_mmu(void)
56{
57 dcache_mmu_disable();
58
59 /* Map Device memory. */
60 mmu_config_range(0, DRAM_START, DCACHE_OFF);
61 /* Disable Page 0 for trapping NULL pointer references. */
62 mmu_disable_range(0, 1);
63 /* Map DRAM memory */
64 mmu_config_range(DRAM_START, DRAM_SIZE, DCACHE_WRITEBACK);
65 /* Map DMA memory */
Julius Werner028cba92014-05-30 18:01:44 -070066 mmu_config_range(DMA_START, DMA_SIZE, DCACHE_OFF);
Deepa Dinamani2c041172014-05-15 17:14:12 -070067
68 mmu_disable_range(DRAM_END, 4096 - DRAM_END);
69
70 mmu_init();
71
72 dcache_mmu_enable();
73}
Furquan Shaikhda01d942014-03-19 14:31:23 -070074
Vadim Bendebury1de971d2014-08-07 15:20:21 -070075#define TPM_RESET_GPIO 22
76static void setup_tpm(void)
77{
Dan Ehrenberg644afa72014-10-24 13:22:05 -070078 if (board_id() != BOARD_ID_PROTO_0)
Vadim Bendebury1de971d2014-08-07 15:20:21 -070079 return; /* Only proto0 have TPM reset connected to GPIO22 */
80
81 gpio_tlmm_config_set(TPM_RESET_GPIO, FUNC_SEL_GPIO, GPIO_PULL_UP,
82 GPIO_4MA, GPIO_ENABLE);
83 /*
84 * Generate a reset pulse. The spec calls for 80 us minimum, let's
85 * make it twice as long. If the output was driven low originally, the
86 * reset pulse will be even longer.
87 */
Julius Wernereaa9c452014-09-24 15:40:49 -070088 gpio_set(TPM_RESET_GPIO, 0);
Vadim Bendebury1de971d2014-08-07 15:20:21 -070089 udelay(160);
Julius Wernereaa9c452014-09-24 15:40:49 -070090 gpio_set(TPM_RESET_GPIO, 1);
Vadim Bendebury1de971d2014-08-07 15:20:21 -070091}
92
Vadim Bendeburyc7bbc042014-09-08 14:34:09 -070093#define SW_RESET_GPIO 26
94static void deassert_sw_reset(void)
95{
Dan Ehrenberg644afa72014-10-24 13:22:05 -070096 if (board_id() == BOARD_ID_PROTO_0)
Vadim Bendeburyc7bbc042014-09-08 14:34:09 -070097 return;
98
Vadim Bendeburyf32ef132014-09-09 20:41:33 -070099 /*
100 * only proto0.2 and later care about this. This signal is eventually
101 * driving the ehernet switch reset input, which is active low. But
102 * since this signal gets inverted along the way, the GPIO needs to be
103 * driven low to take the switch out of reset.
104 */
Vadim Bendeburyc7bbc042014-09-08 14:34:09 -0700105 gpio_tlmm_config_set(SW_RESET_GPIO, FUNC_SEL_GPIO,
106 GPIO_PULL_UP, GPIO_4MA, GPIO_ENABLE);
107
Julius Wernereaa9c452014-09-24 15:40:49 -0700108 gpio_set(SW_RESET_GPIO, 0);
Vadim Bendeburyc7bbc042014-09-08 14:34:09 -0700109}
110
Furquan Shaikhda01d942014-03-19 14:31:23 -0700111static void mainboard_init(device_t dev)
112{
Deepa Dinamani2c041172014-05-15 17:14:12 -0700113 setup_mmu();
Julius Werner028cba92014-05-30 18:01:44 -0700114 setup_usb();
Vadim Bendeburyc7bbc042014-09-08 14:34:09 -0700115 deassert_sw_reset();
Vadim Bendebury1de971d2014-08-07 15:20:21 -0700116 setup_tpm();
Dan Ehrenbergcb3b0c5a2014-10-23 17:46:39 -0700117 /* Functionally a 0-cost no-op if NAND is not present */
118 board_nand_init();
Furquan Shaikhda01d942014-03-19 14:31:23 -0700119}
120
121static void mainboard_enable(device_t dev)
122{
123 dev->ops->init = &mainboard_init;
124}
125
126struct chip_operations mainboard_ops = {
127 .name = "storm",
128 .enable_dev = mainboard_enable,
129};
Julius Werner028cba92014-05-30 18:01:44 -0700130
131void lb_board(struct lb_header *header)
132{
133 struct lb_range *dma;
134
135 dma = (struct lb_range *)lb_new_record(header);
136 dma->tag = LB_TAB_DMA;
137 dma->size = sizeof(*dma);
Julius Wernerec5e5e02014-08-20 15:29:56 -0700138 dma->range_start = (uintptr_t)_dma_coherent;
139 dma->range_size = _dma_coherent_size;
Vadim Bendeburye9e0eec2014-10-16 13:26:59 -0700140
141#if IS_ENABLED(CONFIG_CHROMEOS)
142 /* Retrieve the switch interface MAC addressses. */
143 lb_table_add_macs_from_vpd(header);
144#endif
Julius Werner028cba92014-05-30 18:01:44 -0700145}
Vadim Bendeburyc6d30402014-08-01 17:36:45 -0700146
147static int read_gpio(gpio_t gpio_num)
148{
149 gpio_tlmm_config_set(gpio_num, GPIO_FUNC_DISABLE,
150 GPIO_NO_PULL, GPIO_2MA, GPIO_DISABLE);
151 udelay(10); /* Should be enough to settle. */
Julius Wernereaa9c452014-09-24 15:40:49 -0700152 return gpio_get(gpio_num);
Vadim Bendeburyc6d30402014-08-01 17:36:45 -0700153}
154
155void fill_lb_gpios(struct lb_gpios *gpios)
156{
157 struct lb_gpio *gpio;
158 const int GPIO_COUNT = 5;
159
160 gpios->size = sizeof(*gpios) + (GPIO_COUNT * sizeof(struct lb_gpio));
161 gpios->count = GPIO_COUNT;
162
163 gpio = gpios->gpios;
164 fill_lb_gpio(gpio++, 15, ACTIVE_LOW, "developer", read_gpio(15));
165 fill_lb_gpio(gpio++, 16, ACTIVE_LOW, "recovery", read_gpio(16));
166 fill_lb_gpio(gpio++, 17, ACTIVE_LOW, "write protect", read_gpio(17));
167 fill_lb_gpio(gpio++, -1, ACTIVE_LOW, "power", 1);
168 fill_lb_gpio(gpio++, -1, ACTIVE_LOW, "lid", 0);
169}