blob: 1bde834c2085c5f1c4dc7953a47453f90f1dfe23 [file] [log] [blame]
Martin Rothd75800c2014-05-12 21:56:27 -06001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2013-2014 Sage Electronic Engineering, LLC.
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
20chip soc/intel/fsp_baytrail
21
22 #### ACPI Register Settings ####
23 register "fadt_pm_profile" = "PM_MOBILE"
24 register "fadt_boot_arch" = "ACPI_FADT_LEGACY_DEVICES | ACPI_FADT_8042"
25
26 #### FSP register settings ####
27 register "SataMode" = "SATA_MODE_AHCI"
28 register "MrcInitSPDAddr1" = "SPD_ADDR_DEFAULT"
29 register "MrcInitSPDAddr2" = "SPD_ADDR_DEFAULT"
30 register "MrcInitTsegSize" = "TSEG_SIZE_DEFAULT"
31 register "MrcInitMmioSize" = "MMIO_SIZE_DEFAULT"
32 register "eMMCBootMode" = "EMMC_FOLLOWS_DEVICETREE"
33 register "IgdDvmt50PreAlloc" = "IGD_MEMSIZE_DEFAULT"
34 register "ApertureSize" = "APERTURE_SIZE_DEFAULT"
35 register "GttSize" = "GTT_SIZE_DEFAULT"
36 register "LpssSioEnablePciMode" = "LPSS_PCI_MODE_DEFAULT"
37 register "AzaliaAutoEnable" = "AZALIA_FOLLOWS_DEVICETREE"
38 register "LpeAcpiModeEnable" = "LPE_ACPI_MODE_DISABLED"
39
40 device cpu_cluster 0 on
41 device lapic 0 on end
42 end
43
44 device domain 0 on
45 device pci 00.0 on end # 8086 0F00 - SoC router
46 device pci 02.0 on end # 8086 0F31 - GFX
47 device pci 03.0 off end # 8086 0F38 - MIPI - camera interface
48
Martin Roth2c28ee82014-06-20 21:10:09 -060049 device pci 10.0 off end # 8086 0F14 - EMMC 4.1 Port (MMC1 pins) - (DO NOT USE) - Only 1 EMMC port at a time
50 device pci 11.0 on end # 8086 0F15 - SDIO Port (SD2 pins)
51 device pci 12.0 on end # 8086 0F16 - SD Port (SD3 pins)
Martin Rothd75800c2014-05-12 21:56:27 -060052 device pci 13.0 on end # 8086 0F23 - SATA AHCI (0F20, 0F21, 0F22, 0F23)
53 device pci 14.0 off end # 8086 0F35 - USB XHCI - Only 1 USB controller at a time
54 device pci 15.0 off end # 8086 0F28 - LP Engine Audio
55 device pci 16.0 off end # 8086 0F37 - OTG controller
Martin Roth2c28ee82014-06-20 21:10:09 -060056 device pci 17.0 on end # 8086 0F50 - EMMC 4.5 Port (MMC1 pins) - Only 1 EMMC port at a time
Martin Rothd75800c2014-05-12 21:56:27 -060057 device pci 18.0 on end # 8086 0F40 - SIO - DMA
58 device pci 18.1 on end # 8086 0F41 - I2C Port 1
59 device pci 18.2 on end # 8086 0F42 - I2C Port 2
60 device pci 18.3 on end # 8086 0F43 - I2C Port 3
61 device pci 18.4 on end # 8086 0F44 - I2C Port 4
62 device pci 18.5 on end # 8086 0F45 - I2C Port 5
63 device pci 18.6 on end # 8086 0F46 - I2C Port 6
64 device pci 18.7 on end # 8086 0F47 - I2C Port 7
65 device pci 1a.0 on end # 8086 0F18 - Trusted Execution Engine
66 device pci 1b.0 on end # 8086 0F04 - HD Audio
67 device pci 1c.0 on end # 8086 0F48 - PCIe Root Port 1 (x4 slot)
68 device pci 1c.1 on end # 8086 0F4A - PCIe Root Port 2 (half mini pcie slot)
69 device pci 1c.2 on end # 8086 0F4C - PCIe Root Port 3 (front x1 slot)
70 device pci 1c.3 on end # 8086 0F4E - PCIe Root Port 4 (rear x1 slot)
71 device pci 1d.0 on end # 8086 0F34 - USB EHCI - Only 1 USB controller at a time
72 device pci 1e.0 on end # 8086 0F06 - SIO - DMA
73 device pci 1e.1 on end # 8086 0F08 - PWM 1
74 device pci 1e.2 on end # 8086 0F09 - PWM 2
75 device pci 1e.3 on end # 8086 0F0A - HSUART 1
76 device pci 1e.4 on end # 8086 0F0C - HSUART 2
77 device pci 1e.5 on end # 8086 0F0E - SPI
78 device pci 1f.0 on end # 8086 0F1C - LPC bridge
79 device pci 1f.3 on end # 8086 0F12 - SMBus 0
80 end
81end