blob: 301e6450e568ab4b0ca8cdf32f2264dda25f340e [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>
24#include <soc/qualcomm/ipq806x/include/usb.h>
Deepa Dinamani2c041172014-05-15 17:14:12 -070025
26/* convenient shorthand (in MB) */
Julius Werner028cba92014-05-30 18:01:44 -070027#define DRAM_START (CONFIG_SYS_SDRAM_BASE / MiB)
Deepa Dinamani2c041172014-05-15 17:14:12 -070028#define DRAM_SIZE (CONFIG_DRAM_SIZE_MB)
29#define DRAM_END (DRAM_START + DRAM_SIZE)
30
31/* DMA memory for drivers */
Julius Werner028cba92014-05-30 18:01:44 -070032#define DMA_START (CONFIG_DRAM_DMA_START / MiB)
33#define DMA_SIZE (CONFIG_DRAM_DMA_SIZE / MiB)
34
35static void setup_usb(void)
36{
37 usb_clock_config();
38
39 setup_usb_host1();
40 setup_usb_host2();
41}
Deepa Dinamani2c041172014-05-15 17:14:12 -070042
43static void setup_mmu(void)
44{
45 dcache_mmu_disable();
46
47 /* Map Device memory. */
48 mmu_config_range(0, DRAM_START, DCACHE_OFF);
49 /* Disable Page 0 for trapping NULL pointer references. */
50 mmu_disable_range(0, 1);
51 /* Map DRAM memory */
52 mmu_config_range(DRAM_START, DRAM_SIZE, DCACHE_WRITEBACK);
53 /* Map DMA memory */
Julius Werner028cba92014-05-30 18:01:44 -070054 mmu_config_range(DMA_START, DMA_SIZE, DCACHE_OFF);
Deepa Dinamani2c041172014-05-15 17:14:12 -070055
56 mmu_disable_range(DRAM_END, 4096 - DRAM_END);
57
58 mmu_init();
59
60 dcache_mmu_enable();
61}
Furquan Shaikhda01d942014-03-19 14:31:23 -070062
63static void mainboard_init(device_t dev)
64{
Deepa Dinamani2c041172014-05-15 17:14:12 -070065 setup_mmu();
Julius Werner028cba92014-05-30 18:01:44 -070066 setup_usb();
Furquan Shaikhda01d942014-03-19 14:31:23 -070067}
68
69static void mainboard_enable(device_t dev)
70{
71 dev->ops->init = &mainboard_init;
72}
73
74struct chip_operations mainboard_ops = {
75 .name = "storm",
76 .enable_dev = mainboard_enable,
77};
Julius Werner028cba92014-05-30 18:01:44 -070078
79void lb_board(struct lb_header *header)
80{
81 struct lb_range *dma;
82
83 dma = (struct lb_range *)lb_new_record(header);
84 dma->tag = LB_TAB_DMA;
85 dma->size = sizeof(*dma);
86 dma->range_start = CONFIG_DRAM_DMA_START;
87 dma->range_size = CONFIG_DRAM_DMA_SIZE;
88}