blob: 0f686fa6fa15a11470410eec887534e52b3a4bf5 [file] [log] [blame]
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 Google 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 <device/device.h>
22#include <device/pci.h>
23#include <arch/pci_ops.h>
24
25#include <baytrail/pci_devs.h>
26#include <baytrail/ramstage.h>
27#include "chip.h"
28
29static void pci_domain_set_resources(device_t dev)
30{
31 assign_resources(dev->link_list);
32}
33
34static struct device_operations pci_domain_ops = {
35 .read_resources = pci_domain_read_resources,
36 .set_resources = pci_domain_set_resources,
37 .enable_resources = NULL,
38 .init = NULL,
39 .scan_bus = pci_domain_scan_bus,
40 .ops_pci_bus = pci_bus_default_ops,
41};
42
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050043static void cpu_bus_noop(device_t dev) { }
44
45static struct device_operations cpu_bus_ops = {
46 .read_resources = cpu_bus_noop,
47 .set_resources = cpu_bus_noop,
48 .enable_resources = cpu_bus_noop,
Aaron Durbin302cbd62013-10-21 12:36:17 -050049 .init = baytrail_init_cpus,
Aaron Durbinfda56a62013-09-24 12:29:57 -050050 .scan_bus = NULL,
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050051};
52
53
54static void enable_dev(device_t dev)
55{
56 printk(BIOS_DEBUG, "enable_dev(%s, %d)\n",
57 dev_name(dev), dev->path.type);
58 /* Set the operations if it is a special bus type */
59 if (dev->path.type == DEVICE_PATH_DOMAIN) {
60 dev->ops = &pci_domain_ops;
61 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
62 dev->ops = &cpu_bus_ops;
63 }
64}
65
Aaron Durbin452d31a2013-09-24 16:47:49 -050066/* Called at BS_DEV_INIT_CHIPS time -- very early. Just after BS_PRE_DEVICE. */
67static void soc_init(void *chip_info)
68{
69 baytrail_init_pre_device();
70}
71
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050072struct chip_operations soc_intel_baytrail_ops = {
73 CHIP_NAME("Intel BayTrail SoC")
74 .enable_dev = enable_dev,
Aaron Durbin452d31a2013-09-24 16:47:49 -050075 .init = soc_init,
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050076};
Aaron Durbinfda56a62013-09-24 12:29:57 -050077
78static void pci_set_subsystem(device_t dev, unsigned vendor, unsigned device)
79{
80 if (!vendor || !device) {
81 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
82 pci_read_config32(dev, PCI_VENDOR_ID));
83 } else {
84 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
85 ((device & 0xffff) << 16) | (vendor & 0xffff));
86 }
87}
88
89struct pci_operations soc_pci_ops = {
90 .set_subsystem = &pci_set_subsystem,
91};