blob: d5adf2d85508e51714327a12fe1f0a8731379fd3 [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>
Furquan Shaikhda01d942014-03-19 14:31:23 -070021#include <boot/coreboot_tables.h>
Deepa Dinamani2c041172014-05-15 17:14:12 -070022#include <device/device.h>
Julius Werner028cba92014-05-30 18:01:44 -070023#include <soc/qualcomm/ipq806x/include/clock.h>
Vadim Bendeburyf6ad8322014-06-24 07:26:03 -070024#include <soc/qualcomm/ipq806x/include/gpio.h>
Julius Werner028cba92014-05-30 18:01:44 -070025#include <soc/qualcomm/ipq806x/include/usb.h>
Deepa Dinamani2c041172014-05-15 17:14:12 -070026
27/* convenient shorthand (in MB) */
Julius Werner028cba92014-05-30 18:01:44 -070028#define DRAM_START (CONFIG_SYS_SDRAM_BASE / MiB)
Deepa Dinamani2c041172014-05-15 17:14:12 -070029#define DRAM_SIZE (CONFIG_DRAM_SIZE_MB)
30#define DRAM_END (DRAM_START + DRAM_SIZE)
31
32/* DMA memory for drivers */
Julius Werner028cba92014-05-30 18:01:44 -070033#define DMA_START (CONFIG_DRAM_DMA_START / MiB)
34#define DMA_SIZE (CONFIG_DRAM_DMA_SIZE / MiB)
35
Vadim Bendeburyf6ad8322014-06-24 07:26:03 -070036#define USB_ENABLE_GPIO 51
37
Julius Werner028cba92014-05-30 18:01:44 -070038static void setup_usb(void)
39{
Vadim Bendeburyf6ad8322014-06-24 07:26:03 -070040 gpio_tlmm_config_set(USB_ENABLE_GPIO, FUNC_SEL_GPIO,
41 GPIO_PULL_UP, GPIO_10MA, GPIO_ENABLE);
Julius Werner028cba92014-05-30 18:01:44 -070042 usb_clock_config();
43
44 setup_usb_host1();
Julius Werner028cba92014-05-30 18:01:44 -070045}
Deepa Dinamani2c041172014-05-15 17:14:12 -070046
47static void setup_mmu(void)
48{
49 dcache_mmu_disable();
50
51 /* Map Device memory. */
52 mmu_config_range(0, DRAM_START, DCACHE_OFF);
53 /* Disable Page 0 for trapping NULL pointer references. */
54 mmu_disable_range(0, 1);
55 /* Map DRAM memory */
56 mmu_config_range(DRAM_START, DRAM_SIZE, DCACHE_WRITEBACK);
57 /* Map DMA memory */
Julius Werner028cba92014-05-30 18:01:44 -070058 mmu_config_range(DMA_START, DMA_SIZE, DCACHE_OFF);
Deepa Dinamani2c041172014-05-15 17:14:12 -070059
60 mmu_disable_range(DRAM_END, 4096 - DRAM_END);
61
62 mmu_init();
63
64 dcache_mmu_enable();
65}
Furquan Shaikhda01d942014-03-19 14:31:23 -070066
67static void mainboard_init(device_t dev)
68{
Deepa Dinamani2c041172014-05-15 17:14:12 -070069 setup_mmu();
Julius Werner028cba92014-05-30 18:01:44 -070070 setup_usb();
Furquan Shaikhda01d942014-03-19 14:31:23 -070071}
72
73static void mainboard_enable(device_t dev)
74{
75 dev->ops->init = &mainboard_init;
76}
77
78struct chip_operations mainboard_ops = {
79 .name = "storm",
80 .enable_dev = mainboard_enable,
81};
Julius Werner028cba92014-05-30 18:01:44 -070082
83void lb_board(struct lb_header *header)
84{
85 struct lb_range *dma;
86
87 dma = (struct lb_range *)lb_new_record(header);
88 dma->tag = LB_TAB_DMA;
89 dma->size = sizeof(*dma);
90 dma->range_start = CONFIG_DRAM_DMA_START;
91 dma->range_size = CONFIG_DRAM_DMA_SIZE;
92}