blob: eedae397b0f3d8c9cc46d1dc0dee611243ced59c [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{
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050056 /* Set the operations if it is a special bus type */
57 if (dev->path.type == DEVICE_PATH_DOMAIN) {
58 dev->ops = &pci_domain_ops;
59 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
60 dev->ops = &cpu_bus_ops;
Aaron Durbind7bc23a2013-10-29 16:37:10 -050061 } else if (dev->path.type == DEVICE_PATH_PCI) {
62 /* Handle south cluster enablement. */
63 if (PCI_SLOT(dev->path.pci.devfn) > GFX_DEV &&
64 (dev->ops == NULL || dev->ops->enable == NULL)) {
65 southcluster_enable_dev(dev);
66 }
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050067 }
68}
69
Aaron Durbin452d31a2013-09-24 16:47:49 -050070/* Called at BS_DEV_INIT_CHIPS time -- very early. Just after BS_PRE_DEVICE. */
71static void soc_init(void *chip_info)
72{
73 baytrail_init_pre_device();
74}
75
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050076struct chip_operations soc_intel_baytrail_ops = {
77 CHIP_NAME("Intel BayTrail SoC")
78 .enable_dev = enable_dev,
Aaron Durbin452d31a2013-09-24 16:47:49 -050079 .init = soc_init,
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050080};
Aaron Durbinfda56a62013-09-24 12:29:57 -050081
82static void pci_set_subsystem(device_t dev, unsigned vendor, unsigned device)
83{
84 if (!vendor || !device) {
85 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
86 pci_read_config32(dev, PCI_VENDOR_ID));
87 } else {
88 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
89 ((device & 0xffff) << 16) | (vendor & 0xffff));
90 }
91}
92
93struct pci_operations soc_pci_ops = {
94 .set_subsystem = &pci_set_subsystem,
95};