blob: 839e8dc1a40a5218b0f4fb54cbb184575a7c173b [file] [log] [blame]
Martin Roth433659a2014-05-12 21:55:00 -06001/*
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 <baytrail/pci_devs.h>
24#include <baytrail/ramstage.h>
25#include <drivers/intel/fsp/fsp_util.h>
26#include "chip.h"
27
28static void pci_domain_set_resources(device_t dev)
29{
30 assign_resources(dev->link_list);
31}
32
33static void finalize_dev (device_t dev)
34{
35 /*
36 * Notify FSP for PostPciEnumeration.
37 * Northbridge APIC init should be early and late enough...
38 */
39 printk(BIOS_DEBUG, "FspNotify(EnumInitPhaseAfterPciEnumeration)\n");
40 FspNotify(EnumInitPhaseAfterPciEnumeration);
41}
42
43static struct device_operations pci_domain_ops = {
44 .read_resources = pci_domain_read_resources,
45 .set_resources = pci_domain_set_resources,
46 .enable_resources = NULL,
47 .init = NULL,
48 .final = &finalize_dev,
49 .scan_bus = pci_domain_scan_bus,
50 .ops_pci_bus = pci_bus_default_ops,
51};
52
53static void cpu_bus_noop(device_t dev) { }
54
55static struct device_operations cpu_bus_ops = {
56 .read_resources = cpu_bus_noop,
57 .set_resources = cpu_bus_noop,
58 .enable_resources = cpu_bus_noop,
59 .init = baytrail_init_cpus,
60 .scan_bus = NULL,
61};
62
63static void enable_dev(device_t dev)
64{
65 printk(BIOS_DEBUG, "enable_dev(%s, %d)\n",
66 dev_name(dev), dev->path.type);
67
68 /* Set the operations if it is a special bus type */
69 if (dev->path.type == DEVICE_PATH_DOMAIN) {
70 dev->ops = &pci_domain_ops;
71 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
72 dev->ops = &cpu_bus_ops;
73 } else if (dev->path.type == DEVICE_PATH_PCI) {
74 /* Handle south cluster enablement. */
75 if (PCI_SLOT(dev->path.pci.devfn) > GFX_DEV &&
76 (dev->ops == NULL || dev->ops->enable == NULL)) {
77 southcluster_enable_dev(dev);
78 }
79 }
80}
81
82static void finalize_chip(void *chip_info)
83{
84 /* Notify FSP for ReadyToBoot */
85 printk(BIOS_DEBUG, "FspNotify(EnumInitPhaseReadyToBoot)\n");
86 FspNotify(EnumInitPhaseReadyToBoot);
87
88}
89
90/* Called at BS_DEV_INIT_CHIPS time -- very early. Just after BS_PRE_DEVICE. */
91static void soc_init(void *chip_info)
92{
93 baytrail_init_pre_device();
94}
95
96struct chip_operations soc_intel_fsp_baytrail_ops = {
97 CHIP_NAME("Intel BayTrail SoC")
98 .enable_dev = enable_dev,
99 .init = soc_init,
100 .final = &finalize_chip,
101};
102
103static void pci_set_subsystem(device_t dev, unsigned vendor, unsigned device)
104{
105 if (!vendor || !device) {
106 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
107 pci_read_config32(dev, PCI_VENDOR_ID));
108 } else {
109 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
110 ((device & 0xffff) << 16) | (vendor & 0xffff));
111 }
112}
113
114struct pci_operations soc_pci_ops = {
115 .set_subsystem = &pci_set_subsystem,
116};