blob: 5eaaf2ac7fe01879b8e69955985002654b267461 [file] [log] [blame]
Andrew Wu06510722013-06-21 21:37:05 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 DMP Electronics Inc.
5 *
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
20#include <console/console.h>
21#include <arch/io.h>
22#include <stdint.h>
23#include <device/device.h>
24#include <device/pci.h>
25#include <device/pci_ids.h>
26#include <cbmem.h>
27#include <pc80/mc146818rtc.h>
28#include "chip.h"
29#include "northbridge.h"
30
31#define SPI_BASE 0xfc00
32
33static void northbridge_init(device_t dev)
34{
35 printk(BIOS_DEBUG, "Vortex86EX northbridge early init ...\n");
36 // enable F0A/ECA/E8A/E4A/E0A/C4A/C0A shadow read/writable.
37 pci_write_config32(dev, NB_REG_MAR, 0x3ff000f0);
38 // enable C0000h - C3FFFh/C4000h - C7FFF can be in L1 cache selection.
39 pci_write_config32(dev, NB_REG_HOST_CTL, (1 << 18) | (1 << 19));
40 // Set SPI register base.
41 pci_write_config16(dev, NB_REG_SPI_BASE, SPI_BASE | 1);
42}
43
44static struct device_operations northbridge_operations = {
45 .set_resources = pci_dev_set_resources,
46 .enable_resources = pci_dev_enable_resources,
47 .init = northbridge_init
48};
49
Andrew Wu06510722013-06-21 21:37:05 +080050static const struct pci_driver northbridge_driver_6025 __pci_driver = {
51 .ops = &northbridge_operations,
52 .vendor = PCI_VENDOR_ID_RDC,
53 .device = 0x6025, /* EX CPU N/B ID */
54};
55
56/* Set CMOS register 15h/16h/17h/18h for base/extended
57 * memory size. */
58static void set_cmos_memory_size(unsigned long sizek)
59{
60 unsigned long ext_mem_size;
61 u8 ext_mem_size_hb, ext_mem_size_lb;
62 /* calculate memory size between 1M - 65M. */
63 ext_mem_size = sizek - 1024;
64 if (ext_mem_size > 65535)
65 ext_mem_size = 65535;
66 ext_mem_size_hb = (u8) (ext_mem_size >> 8);
67 ext_mem_size_lb = (u8) (ext_mem_size & 0xff);
68 /* Base memory is always 640K. */
69 cmos_write(0x80, 0x15);
70 cmos_write(0x02, 0x16);
71 /* Write extended memory size. */
72 cmos_write(ext_mem_size_lb, 0x17);
73 cmos_write(ext_mem_size_hb, 0x18);
74 /* register 0x30(48) is RTC_BOOT_BYTE for coreboot,
75 * don't touch it. */
76}
77
78static void pci_domain_set_resources(device_t dev)
79{
80 device_t mc_dev;
81 uint32_t pci_tolm;
82
83 printk(BIOS_SPEW, "Entering vortex86ex pci_domain_set_resources.\n");
84
85 pci_tolm = find_pci_tolm(dev->link_list);
86 mc_dev = dev->link_list->children;
87 if (mc_dev) {
88 unsigned long tomk, tolmk;
89 int idx;
90 int ss;
91 /* Get DDRII size setting from northbridge register. */
92 /* SS = 0 for 2MB, 1 for 4MB, 2 for 8MB, 3 for 16MB ... */
93 ss = pci_read_config16(mc_dev, 0x6c);
94 ss = ((ss >> 8) & 0xf);
95 tomk = (2 * 1024) << ss;
96 printk(BIOS_DEBUG, "I would set ram size to %ld Mbytes\n", (tomk >> 10));
97 /* Compute the top of Low memory */
98 tolmk = pci_tolm >> 10;
99 if (tolmk >= tomk)
100 /* The PCI hole does does not overlap the memory.
101 */
102 tolmk = tomk;
103
104 high_tables_base = (tolmk * 1024) - HIGH_MEMORY_SIZE;
105 high_tables_size = HIGH_MEMORY_SIZE;
106 printk(BIOS_DEBUG, "tom: %lx, high_tables_base: %llx, high_tables_size: %llx\n",
107 tomk * 1024, high_tables_base, high_tables_size);
108
109 /* Report the memory regions */
110 idx = 10;
111 ram_resource(dev, idx++, 0, 640); /* first 640k */
112 ram_resource(dev, idx++, 768, tolmk - 768); /* leave a hole for vga */
113 set_cmos_memory_size(tolmk);
114 }
115 assign_resources(dev->link_list);
116}
117
118static struct device_operations pci_domain_ops = {
119 .read_resources = pci_domain_read_resources,
120 .set_resources = pci_domain_set_resources,
121 .enable_resources = NULL,
122 .init = NULL,
123 .scan_bus = pci_domain_scan_bus,
Kyösti Mälkki33e5df32013-07-03 10:51:34 +0300124 .ops_pci_bus = pci_bus_default_ops,
Andrew Wu06510722013-06-21 21:37:05 +0800125};
126
127static void enable_dev(struct device *dev)
128{
129 printk(BIOS_SPEW, "In vortex86ex enable_dev for device %s.\n", dev_path(dev));
130
131 /* Set the operations if it is a special bus type */
132 if (dev->path.type == DEVICE_PATH_DOMAIN) {
133 dev->ops = &pci_domain_ops;
Andrew Wu06510722013-06-21 21:37:05 +0800134 }
135}
136
137struct chip_operations northbridge_dmp_vortex86ex_ops = {
138 CHIP_NAME("DMP Vortex86EX Northbridge")
139 .enable_dev = enable_dev,
140};