blob: 4e59631e61fad6b3495b4182adac4ab59d718b29 [file] [log] [blame]
Martin Roth5474eb12018-05-26 19:22:33 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
Richard Smithcb8eab42006-07-24 04:25:47 +000014#include <console/console.h>
15#include <arch/io.h>
16#include <stdint.h>
17#include <device/device.h>
18#include <device/pci.h>
19#include <device/pci_ids.h>
20#include <stdlib.h>
21#include <string.h>
Stefan Reinauerfd611f92013-02-27 23:45:20 +010022#include <cbmem.h>
Corey Osgoode562f722008-12-19 03:36:48 +000023#include <cpu/cpu.h>
24#include <pc80/keyboard.h>
Richard Smithcb8eab42006-07-24 04:25:47 +000025#include "northbridge.h"
Uwe Hermann1a9c8922007-04-01 17:24:03 +000026#include "i440bx.h"
Richard Smithcb8eab42006-07-24 04:25:47 +000027
Elyes HAOUAS64d2d102018-02-09 08:43:01 +010028static void northbridge_init(struct device *dev)
Richard Smithcb8eab42006-07-24 04:25:47 +000029{
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000030 printk(BIOS_SPEW, "Northbridge Init\n");
Richard Smithcb8eab42006-07-24 04:25:47 +000031}
32
Richard Smithcb8eab42006-07-24 04:25:47 +000033static struct device_operations northbridge_operations = {
34 .read_resources = pci_dev_read_resources,
35 .set_resources = pci_dev_set_resources,
36 .enable_resources = pci_dev_enable_resources,
37 .init = northbridge_init,
38 .enable = 0,
39 .ops_pci = 0,
40};
41
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +000042static const struct pci_driver northbridge_driver __pci_driver = {
Richard Smithcb8eab42006-07-24 04:25:47 +000043 .ops = &northbridge_operations,
44 .vendor = PCI_VENDOR_ID_INTEL,
Myles Watson032a9652009-05-11 22:24:53 +000045 .device = 0x7190,
Richard Smithcb8eab42006-07-24 04:25:47 +000046};
47
Elyes HAOUAS64d2d102018-02-09 08:43:01 +010048static void i440bx_domain_set_resources(struct device *dev)
Richard Smithcb8eab42006-07-24 04:25:47 +000049{
Elyes HAOUAS322fa322018-05-09 17:49:56 +020050 struct device *mc_dev;
Uwe Hermannf5a6fd22007-05-27 23:31:31 +000051 uint32_t pci_tolm;
Richard Smithcb8eab42006-07-24 04:25:47 +000052
Myles Watson894a3472010-06-09 22:41:35 +000053 pci_tolm = find_pci_tolm(dev->link_list);
54 mc_dev = dev->link_list->children;
Richard Smithcb8eab42006-07-24 04:25:47 +000055 if (mc_dev) {
56 unsigned long tomk, tolmk;
Uwe Hermann1a9c8922007-04-01 17:24:03 +000057 int idx;
Richard Smithcb8eab42006-07-24 04:25:47 +000058
Uwe Hermannf5a6fd22007-05-27 23:31:31 +000059 /* Figure out which areas are/should be occupied by RAM. The
60 * value of the highest DRB denotes the end of the physical
61 * memory (in units of 8MB).
Uwe Hermann1a9c8922007-04-01 17:24:03 +000062 */
Uwe Hermannf5a6fd22007-05-27 23:31:31 +000063 tomk = ((unsigned long)pci_read_config8(mc_dev, DRB7));
Uwe Hermannf03e4e92007-05-10 23:59:20 +000064
Uwe Hermannf5a6fd22007-05-27 23:31:31 +000065 /* Convert to KB. */
66 tomk *= (8 * 1024);
67
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000068 printk(BIOS_DEBUG, "Setting RAM size to %ld MB\n", tomk / 1024);
Uwe Hermannf5a6fd22007-05-27 23:31:31 +000069
70 /* Compute the top of low memory. */
71 tolmk = pci_tolm / 1024;
72
Richard Smithcb8eab42006-07-24 04:25:47 +000073 if (tolmk >= tomk) {
Myles Watson032a9652009-05-11 22:24:53 +000074 /* The PCI hole does not overlap the memory. */
Richard Smithcb8eab42006-07-24 04:25:47 +000075 tolmk = tomk;
76 }
Uwe Hermann1a9c8922007-04-01 17:24:03 +000077
Uwe Hermannf5a6fd22007-05-27 23:31:31 +000078 /* Report the memory regions. */
Richard Smithcb8eab42006-07-24 04:25:47 +000079 idx = 10;
Uwe Hermann1a9c8922007-04-01 17:24:03 +000080 ram_resource(dev, idx++, 0, 640);
Uwe Hermannf5a6fd22007-05-27 23:31:31 +000081 ram_resource(dev, idx++, 768, tolmk - 768);
Myles Watson032a9652009-05-11 22:24:53 +000082
Keith Huid0301c12017-09-02 18:13:11 -040083 if (IS_ENABLED(CONFIG_LATE_CBMEM_INIT))
84 set_late_cbmem_top(tomk * 1024);
Richard Smithcb8eab42006-07-24 04:25:47 +000085 }
Myles Watson894a3472010-06-09 22:41:35 +000086 assign_resources(dev->link_list);
Richard Smithcb8eab42006-07-24 04:25:47 +000087}
88
Richard Smithcb8eab42006-07-24 04:25:47 +000089static struct device_operations pci_domain_ops = {
Myles Watson032a9652009-05-11 22:24:53 +000090 .read_resources = pci_domain_read_resources,
Myles Watson29cc9ed2009-07-02 18:56:24 +000091 .set_resources = i440bx_domain_set_resources,
Myles Watson7eac4452010-06-17 16:16:56 +000092 .enable_resources = NULL,
93 .init = NULL,
Myles Watson032a9652009-05-11 22:24:53 +000094 .scan_bus = pci_domain_scan_bus,
95};
Richard Smithcb8eab42006-07-24 04:25:47 +000096
Elyes HAOUAS64d2d102018-02-09 08:43:01 +010097static void cpu_bus_init(struct device *dev)
Richard Smithcb8eab42006-07-24 04:25:47 +000098{
Myles Watson894a3472010-06-09 22:41:35 +000099 initialize_cpus(dev->link_list);
Richard Smithcb8eab42006-07-24 04:25:47 +0000100}
101
Richard Smithcb8eab42006-07-24 04:25:47 +0000102static struct device_operations cpu_bus_ops = {
Edward O'Callaghan9f744622014-10-31 08:12:34 +1100103 .read_resources = DEVICE_NOOP,
104 .set_resources = DEVICE_NOOP,
105 .enable_resources = DEVICE_NOOP,
Myles Watson032a9652009-05-11 22:24:53 +0000106 .init = cpu_bus_init,
107 .scan_bus = 0,
Richard Smithcb8eab42006-07-24 04:25:47 +0000108};
109
110static void enable_dev(struct device *dev)
111{
Myles Watson032a9652009-05-11 22:24:53 +0000112 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800113 if (dev->path.type == DEVICE_PATH_DOMAIN) {
Myles Watson032a9652009-05-11 22:24:53 +0000114 dev->ops = &pci_domain_ops;
Myles Watson032a9652009-05-11 22:24:53 +0000115 }
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800116 else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
Myles Watson032a9652009-05-11 22:24:53 +0000117 dev->ops = &cpu_bus_ops;
118 }
Richard Smithcb8eab42006-07-24 04:25:47 +0000119}
120
121struct chip_operations northbridge_intel_i440bx_ops = {
Uwe Hermannf5a6fd22007-05-27 23:31:31 +0000122 CHIP_NAME("Intel 82443BX (440BX) Northbridge")
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000123 .enable_dev = enable_dev,
Richard Smithcb8eab42006-07-24 04:25:47 +0000124};