[coreboot-gerrit] Change in ...coreboot[master]: [RFC] src/mainboard/cmr/cmedrobo: initial commit

Michał Żygowski (Code Review) gerrit at coreboot.org
Wed Dec 19 15:52:18 CET 2018


Michał Żygowski has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/30312


Change subject: [RFC] src/mainboard/cmr/cmedrobo: initial commit
......................................................................

[RFC] src/mainboard/cmr/cmedrobo: initial commit

Signed-off-by: Michał Żygowski <michal.zygowski at 3mdeb.com>
Change-Id: I40de818d85a15e6515fe6585f9f8c07336f17242
---
A src/mainboard/cmr/Kconfig
A src/mainboard/cmr/Kconfig.name
A src/mainboard/cmr/cmedrobo/Kconfig
A src/mainboard/cmr/cmedrobo/Kconfig.name
A src/mainboard/cmr/cmedrobo/Makefile.inc
A src/mainboard/cmr/cmedrobo/acpi/ec.asl
A src/mainboard/cmr/cmedrobo/acpi/mainboard.asl
A src/mainboard/cmr/cmedrobo/acpi/superio.asl
A src/mainboard/cmr/cmedrobo/acpi_tables.c
A src/mainboard/cmr/cmedrobo/board_info.txt
A src/mainboard/cmr/cmedrobo/cmos.layout
A src/mainboard/cmr/cmedrobo/devicetree.cb
A src/mainboard/cmr/cmedrobo/dsdt.asl
A src/mainboard/cmr/cmedrobo/fadt.c
A src/mainboard/cmr/cmedrobo/gpio.c
A src/mainboard/cmr/cmedrobo/irq_tables.c
A src/mainboard/cmr/cmedrobo/irqroute.c
A src/mainboard/cmr/cmedrobo/irqroute.h
A src/mainboard/cmr/cmedrobo/mainboard.c
A src/mainboard/cmr/cmedrobo/mptable.c
A src/mainboard/cmr/cmedrobo/romstage.c
21 files changed, 1,300 insertions(+), 0 deletions(-)



  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/12/30312/1

diff --git a/src/mainboard/cmr/Kconfig b/src/mainboard/cmr/Kconfig
new file mode 100644
index 0000000..3d03f8e
--- /dev/null
+++ b/src/mainboard/cmr/Kconfig
@@ -0,0 +1,16 @@
+if VENDOR_CMR
+
+choice
+	prompt "Mainboard model"
+
+source "src/mainboard/cmr/*/Kconfig.name"
+
+endchoice
+
+source "src/mainboard/cmr/*/Kconfig"
+
+config MAINBOARD_VENDOR
+	string
+	default "CMR"
+
+endif # VENDOR_PCENGINES
diff --git a/src/mainboard/cmr/Kconfig.name b/src/mainboard/cmr/Kconfig.name
new file mode 100644
index 0000000..13e701f
--- /dev/null
+++ b/src/mainboard/cmr/Kconfig.name
@@ -0,0 +1,2 @@
+config VENDOR_CMR
+	bool "CMR"
diff --git a/src/mainboard/cmr/cmedrobo/Kconfig b/src/mainboard/cmr/cmedrobo/Kconfig
new file mode 100644
index 0000000..a2a55e8
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/Kconfig
@@ -0,0 +1,76 @@
+##
+## This file is part of the coreboot project.
+##
+## Copyright (C) 2013-2014 Sage Electronic Engineering, LLC.
+## Copyright (C) 2014 Intel Corporation
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; version 2 of the License.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+## GNU General Public License for more details.
+##
+
+if BOARD_CMR_CMEDROBO
+
+config BOARD_SPECIFIC_OPTIONS # dummy
+	def_bool y
+	select SOC_INTEL_FSP_BAYTRAIL
+	select BOARD_ROMSIZE_KB_8192
+	select HAVE_ACPI_TABLES
+	select HAVE_OPTION_TABLE
+	select HAVE_MP_TABLE
+	select HAVE_PIRQ_TABLE
+	select TSC_MONOTONIC_TIMER
+	select IOAPIC
+
+config MAINBOARD_DIR
+	string
+	default "cmr/cmedrobo"
+
+config MAINBOARD_PART_NUMBER
+	string
+	default "Minnow Max"
+
+config MAX_CPUS
+	int
+	default 16
+
+config FSP_FILE
+	string
+	default "../intel/fsp/baytrail/BAYTRAIL_FSP.fd"
+
+config CBFS_SIZE
+	hex
+	default 0x00600000
+
+config ENABLE_FSP_FAST_BOOT
+	bool
+	depends on HAVE_FSP_BIN
+	default y
+
+config VIRTUAL_ROM_SIZE
+	hex
+	depends on ENABLE_FSP_FAST_BOOT
+	default 0x800000
+
+config POST_DEVICE
+	bool
+	default n
+
+config VGA_BIOS
+	bool
+	default y if FSP_PACKAGE_DEFAULT
+
+config MAX_PIRQ_LINKS
+	int
+	default 8
+
+config IRQ_SLOT_COUNT
+	int
+	default 11
+
+endif # BOARD_INTEL_MINNOWMAX
diff --git a/src/mainboard/cmr/cmedrobo/Kconfig.name b/src/mainboard/cmr/cmedrobo/Kconfig.name
new file mode 100644
index 0000000..60983f33
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/Kconfig.name
@@ -0,0 +1,2 @@
+config BOARD_CMR_CMEDROBO
+	bool "CMR Robo"
diff --git a/src/mainboard/cmr/cmedrobo/Makefile.inc b/src/mainboard/cmr/cmedrobo/Makefile.inc
new file mode 100644
index 0000000..6e0272f
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/Makefile.inc
@@ -0,0 +1,18 @@
+##
+## This file is part of the coreboot project.
+##
+## Copyright (C) 2013 Google Inc.
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; version 2 of the License.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+## GNU General Public License for more details.
+##
+
+ramstage-y += gpio.c
+ramstage-y += irqroute.c
+
diff --git a/src/mainboard/cmr/cmedrobo/acpi/ec.asl b/src/mainboard/cmr/cmedrobo/acpi/ec.asl
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/acpi/ec.asl
diff --git a/src/mainboard/cmr/cmedrobo/acpi/mainboard.asl b/src/mainboard/cmr/cmedrobo/acpi/mainboard.asl
new file mode 100644
index 0000000..b032ee1
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/acpi/mainboard.asl
@@ -0,0 +1,20 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2011 Google Inc.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; version 2 of
+ * the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+
+Device (PWRB)
+{
+	Name(_HID, EisaId("PNP0C0C"))
+}
diff --git a/src/mainboard/cmr/cmedrobo/acpi/superio.asl b/src/mainboard/cmr/cmedrobo/acpi/superio.asl
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/acpi/superio.asl
diff --git a/src/mainboard/cmr/cmedrobo/acpi_tables.c b/src/mainboard/cmr/cmedrobo/acpi_tables.c
new file mode 100644
index 0000000..33672c5
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/acpi_tables.c
@@ -0,0 +1,64 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2012 Google Inc.
+ * Copyright (C) 2013-2014 Sage Electronic Engineering, LLC.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+
+#include <types.h>
+#include <string.h>
+#include <lib.h> // hexdump
+#include <console/console.h>
+#include <arch/acpi.h>
+#include <arch/ioapic.h>
+#include <arch/acpigen.h>
+#include <arch/smp/mpspec.h>
+#include <device/device.h>
+#include <device/pci.h>
+#include <device/pci_ids.h>
+#include <soc/acpi.h>
+#include <soc/nvs.h>
+#include <soc/iomap.h>
+
+void acpi_create_gnvs(global_nvs_t *gnvs)
+{
+	acpi_init_gnvs(gnvs);
+
+	/* Enable USB ports in S3 */
+	gnvs->s3u0 = 1;
+	gnvs->s3u1 = 1;
+
+	/* Disable USB ports in S5 */
+	gnvs->s5u0 = 0;
+	gnvs->s5u1 = 0;
+
+	/* No TPM Present */
+	gnvs->tpmp = 0;
+
+	/* Enable DPTF */
+	gnvs->dpte = 0;
+
+}
+
+unsigned long acpi_fill_madt(unsigned long current)
+{
+	/* Local APICs */
+	current = acpi_create_madt_lapics(current);
+
+	/* IOAPIC */
+	current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current,
+				2, IO_APIC_ADDR, 0);
+
+	current = acpi_madt_irq_overrides(current);
+
+	return current;
+}
diff --git a/src/mainboard/cmr/cmedrobo/board_info.txt b/src/mainboard/cmr/cmedrobo/board_info.txt
new file mode 100644
index 0000000..5af79f8
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/board_info.txt
@@ -0,0 +1,4 @@
+Category: sbc
+ROM protocol: SPI
+Flashrom support: y
+Release year: 2014
diff --git a/src/mainboard/cmr/cmedrobo/cmos.layout b/src/mainboard/cmr/cmedrobo/cmos.layout
new file mode 100644
index 0000000..4cb5106
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/cmos.layout
@@ -0,0 +1,108 @@
+##
+## This file is part of the coreboot project.
+##
+## Copyright (C) 2007-2008 coresystems GmbH
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; version 2 of the License.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+## GNU General Public License for more details.
+##
+
+# -----------------------------------------------------------------
+entries
+
+# -----------------------------------------------------------------
+# Status Register A
+# -----------------------------------------------------------------
+# Status Register B
+# -----------------------------------------------------------------
+# Status Register C
+#96           4       r       0        status_c_rsvd
+#100          1       r       0        uf_flag
+#101          1       r       0        af_flag
+#102          1       r       0        pf_flag
+#103          1       r       0        irqf_flag
+# -----------------------------------------------------------------
+# Status Register D
+#104          7       r       0        status_d_rsvd
+#111          1       r       0        valid_cmos_ram
+# -----------------------------------------------------------------
+# Diagnostic Status Register
+#112          8       r       0        diag_rsvd1
+
+# -----------------------------------------------------------------
+0          120       r       0        reserved_memory
+#120        264       r       0        unused
+
+# -----------------------------------------------------------------
+# RTC_BOOT_BYTE (coreboot hardcoded)
+384          1       e       4        boot_option
+388          4       h       0        reboot_counter
+#390          2       r       0        unused?
+
+# -----------------------------------------------------------------
+# coreboot config options: console
+#392          3       r       0        unused
+395          4       e       6        debug_level
+#399          1       r       0        unused
+
+# coreboot config options: cpu
+400          1       e       2        hyper_threading
+#401          7       r       0        unused
+
+# coreboot config options: southbridge
+408          1       e       1        nmi
+409          2       e       7        power_on_after_fail
+411          2       e       8        use_xhci_over_ehci
+#413          3       r       0        unused
+
+# MRC Scrambler Seed values
+896         32        r       0        mrc_scrambler_seed
+928         32        r       0        mrc_scrambler_seed_s3
+
+# coreboot config options: check sums
+984         16       h       0        check_sum
+#1000        24       r       0        amd_reserved
+
+#save timestamps in pre-ram boot areas
+1720        64       h       0        timestamp_value1
+1784        64       h       0        timestamp_value2
+1848        64       h       0        timestamp_value3
+1912        64       h       0        timestamp_value4
+1976        64       h       0        timestamp_value5
+
+# -----------------------------------------------------------------
+
+enumerations
+
+#ID value   text
+1     0     Disable
+1     1     Enable
+2     0     Enable
+2     1     Disable
+4     0     Fallback
+4     1     Normal
+6     0     Emergency
+6     1     Alert
+6     2     Critical
+6     3     Error
+6     4     Warning
+6     5     Notice
+6     6     Info
+6     7     Debug
+6     8     Spew
+7     0     Disable
+7     1     Enable
+7     2     Keep
+8     0     EHCI
+8     1     XHCI
+8     2     Default
+# -----------------------------------------------------------------
+checksums
+
+checksum 392 415 984
diff --git a/src/mainboard/cmr/cmedrobo/devicetree.cb b/src/mainboard/cmr/cmedrobo/devicetree.cb
new file mode 100644
index 0000000..264a24d
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/devicetree.cb
@@ -0,0 +1,94 @@
+##
+## This file is part of the coreboot project.
+##
+## Copyright (C) 2013-2014 Sage Electronic Engineering, LLC.
+## Copyright (C) 2014 Intel Corporation
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; version 2 of the License.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+## GNU General Public License for more details.
+##
+
+chip soc/intel/fsp_baytrail
+
+	#### ACPI Register Settings ####
+	register "fadt_pm_profile"         = "PM_MOBILE"
+	register "fadt_boot_arch"          = "ACPI_FADT_LEGACY_FREE"
+
+	#### FSP register settings ####
+	register "PcdSataMode"             = "SATA_MODE_AHCI"
+	register "PcdMrcInitSPDAddr1"      = "SPD_ADDR_DEFAULT"
+	register "PcdMrcInitSPDAddr2"      = "SPD_ADDR_DISABLED"
+	register "PcdMrcInitMmioSize"      = "MMIO_SIZE_DEFAULT"
+	register "PcdeMMCBootMode"         = "EMMC_FOLLOWS_DEVICETREE"
+	register "PcdIgdDvmt50PreAlloc"    = "IGD_MEMSIZE_DEFAULT"
+	register "PcdApertureSize"         = "APERTURE_SIZE_DEFAULT"
+	register "PcdGttSize"              = "GTT_SIZE_DEFAULT"
+	register "PcdLpssSioEnablePciMode" = "LPSS_PCI_MODE_DEFAULT"
+	register "AzaliaAutoEnable"        = "AZALIA_FOLLOWS_DEVICETREE"
+	register "LpeAcpiModeEnable"       = "LPE_ACPI_MODE_DISABLED"
+	register "IgdRenderStandby"        = "IGD_RENDER_STANDBY_ENABLE"
+	register "EnableMemoryDown"        = "MEMORY_DOWN_ENABLE"
+	register "DRAMSpeed"               = "DRAM_SPEED_1066MHZ"
+	register "DRAMType"                = "DRAM_TYPE_DDR3L"
+	register "DIMM0Enable"             = "DIMM0_ENABLE"
+	register "DIMM1Enable"             = "DIMM1_DISABLE"
+	register "DIMMDWidth"              = "DIMM_DWIDTH_X16"
+	register "DIMMDensity"             = "DIMM_DENSITY_2G_BIT" # Setting for 1GB board - modified runtime for 2GB board in romstage.c to DIMM_DENSITY_4G_BIT
+	register "DIMMBusWidth"            = "DIMM_BUS_WIDTH_64BIT"
+	register "DIMMSides"               = "DIMM_SIDES_1RANK"
+	register "DIMMtCL"                 = "11"
+	register "DIMMtRPtRCD"             = "11"
+	register "DIMMtWR"                 = "12"
+	register "DIMMtWTR"                = "6"
+	register "DIMMtRRD"                = "6"
+	register "DIMMtRTP"                = "6"
+	register "DIMMtFAW"                = "20"
+
+	device cpu_cluster 0 on
+		device lapic 0 on end
+	end
+
+	device domain 0 on
+		device pci 00.0 on end	# 8086 0F00 - SoC router		-
+		device pci 02.0 on end	# 8086 0F31 - GFX				micro HDMI
+		device pci 03.0 off end	# 8086 0F38 - MIPI				-
+
+		device pci 10.0 off end	# 8086 0F14 - EMMC Port			-
+		device pci 11.0 off end	# 8086 0F15 - SDIO Port			-
+		device pci 12.0 on end	# 8086 0F16 - SD Port			MicroSD on SD3
+		device pci 13.0 on end	# 8086 0F23 - SATA AHCI			Onboard & HSEC
+		device pci 14.0 on end	# 8086 0F35 - USB XHCI - Onboard & HSEC  - Enabling both EHCI and XHCI will default to EHCI if not changed at runtime
+		device pci 15.0 on end	# 8086 0F28 - LP Engine Audio	LSEC
+		device pci 16.0 off end # 8086 0F37 - OTG controller
+		device pci 17.0 off end	# 8086 0F50 - MMC Port			-
+		device pci 18.0 on end	# 8086 0F40 - SIO - DMA			-
+		device pci 18.1 on end	# 8086 0F41 -   I2C Port 1 (0)	-
+		device pci 18.2 on end	# 8086 0F42 -   I2C Port 2 (1)	- (testpoints)
+		device pci 18.3 on end	# 8086 0F43 -   I2C Port 3 (2)	-
+		device pci 18.4 on end	# 8086 0F44 -   I2C Port 4 (3)	-
+		device pci 18.5 on end	# 8086 0F45 -   I2C Port 5 (4)	-
+		device pci 18.6 on end	# 8086 0F46 -   I2C Port 6 (5)	LSEC
+		device pci 18.7 on end	# 8086 0F47 -   I2C Port 7 (6)	HSEC
+		device pci 1a.0 on end	# 8086 0F18 - TXE				-
+		device pci 1b.0 on end	# 8086 0F04 - HD Audio			-
+		device pci 1c.0 on end	# 8086 0F48 - PCIe Port 1 (0)	Must remain on
+		device pci 1c.1 on end	# 8086 0F4A - PCIe Port 2 (1)	Onboard GBE (some models)
+		device pci 1c.2 on end	# 8086 0F4C - PCIe Port 3 (2)	Onboard GBE
+		device pci 1c.3 on end	# 8086 0F4E - PCIe Port 4 (3)	HSEC
+		device pci 1d.0 on end	# 8086 0F34 - USB EHCI - Enabling both EHCI and XHCI will default to EHCI if not changed at runtime
+		device pci 1e.0 on end	# 8086 0F06 - SIO - DMA			-
+		device pci 1e.1 on end	# 8086 0F08 -   PWM 1			LSEC
+		device pci 1e.2 on end	# 8086 0F09 -   PWM 2			LSEC
+		device pci 1e.3 on end	# 8086 0F0A -   HSUART 1		LSEC
+		device pci 1e.4 on end	# 8086 0F0C -   HSUART 2		LSEC
+		device pci 1e.5 on end	# 8086 0F0E -   SPI				LSEC
+		device pci 1f.0 on end	# 8086 0F1C - LPC bridge		No connector
+		device pci 1f.3 on end	# 8086 0F12 - SMBus 0			SPC
+	end
+end
diff --git a/src/mainboard/cmr/cmedrobo/dsdt.asl b/src/mainboard/cmr/cmedrobo/dsdt.asl
new file mode 100644
index 0000000..2f2c30d
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/dsdt.asl
@@ -0,0 +1,53 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007-2009 coresystems GmbH
+ * Copyright (C) 2011 Google Inc.
+ * Copyright (C) 2014 Sage Electronic Engineering, LLC.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+
+#define INCLUDE_LPE  1
+#define INCLUDE_SCC  1
+#define INCLUDE_EHCI 1
+#define INCLUDE_XHCI 1
+#define INCLUDE_LPSS 1
+
+
+DefinitionBlock(
+	"dsdt.aml",
+	"DSDT",
+	0x02,		// DSDT revision: ACPI v2.0
+	"COREv4",	// OEM id
+	"COREBOOT",	// OEM table id
+	0x20110725	// OEM revision
+)
+{
+	// Some generic macros
+	#include <soc/intel/fsp_baytrail/acpi/platform.asl>
+
+	// global NVS and variables
+	#include <soc/intel/fsp_baytrail/acpi/globalnvs.asl>
+
+	#include <cpu/intel/common/acpi/cpu.asl>
+
+	Scope (\_SB) {
+		Device (PCI0)
+		{
+			#include <soc/intel/fsp_baytrail/acpi/southcluster.asl>
+		}
+	}
+
+	/* Chipset specific sleep states */
+	#include <soc/intel/fsp_baytrail/acpi/sleepstates.asl>
+
+	#include "acpi/mainboard.asl"
+}
diff --git a/src/mainboard/cmr/cmedrobo/fadt.c b/src/mainboard/cmr/cmedrobo/fadt.c
new file mode 100644
index 0000000..4194bfc
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/fadt.c
@@ -0,0 +1,29 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007-2009 coresystems GmbH
+ * Copyright (C) 2013-2014 Sage Electronic Engineering, LLC.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+
+#include <arch/acpi.h>
+#include <soc/acpi.h>
+
+void acpi_create_fadt(acpi_fadt_t *fadt, acpi_facs_t *facs, void *dsdt)
+{
+	acpi_header_t *header = &(fadt->header);
+
+	acpi_fill_in_fadt(fadt, facs, dsdt);
+
+	/* Platform specific customizations go here */
+
+	header->checksum = acpi_checksum((void *) fadt, sizeof(acpi_fadt_t));
+}
diff --git a/src/mainboard/cmr/cmedrobo/gpio.c b/src/mainboard/cmr/cmedrobo/gpio.c
new file mode 100644
index 0000000..3157dbb
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/gpio.c
@@ -0,0 +1,240 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2013 Google Inc.
+ * Copyright (C) 2014 Sage Electronic Engineering, LLC.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+
+#include <stdlib.h>
+#include <soc/gpio.h>
+#include "irqroute.h"
+
+/*
+ * For multiplexed functions, look in EDS:
+ * 10.3 Ball Name and Function by Location
+ *
+ * The pads list is in the BWG_VOL2 Rev1p2:
+ * Note that Pad # is not the same as GPIO#
+ * 37 GPIO Handling:
+ *  Table 37-1. SCORE Pads List
+ *  Table 37-2. SSUSORE Pads List
+ */
+
+/* NCORE GPIOs */
+static const struct soc_gpio_map gpncore_gpio_map[] = {
+	GPIO_FUNC2,			// GPIO_S0_NC[00] - HDMI_HPD
+	GPIO_FUNC2,			// GPIO_S0_NC[01] - HDMI_DDCDAT
+	GPIO_FUNC2,			// GPIO_S0_NC[02] - HDMI_DDCCLK
+	GPIO_NC,			// GPIO_S0_NC[03] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[04] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[05] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[06] - No Connect
+	GPIO_FUNC2,			// GPIO_S0_NC[07] - DDI1_DDCDAT
+	GPIO_NC,			// GPIO_S0_NC[08] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[09] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[10] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[11] - No Connect
+	GPIO_FUNC(0, PULL_UP, 20K),	// GPIO_S0_NC[12] - TP15
+	GPIO_NC,			// GPIO_S0_NC[13] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[14] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[15] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[16] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[17] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[18] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[19] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[20] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[21] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[22] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[23] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[24] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[25] - No Connect
+	GPIO_NC,			// GPIO_S0_NC[26] - No Connect
+	GPIO_END
+};
+
+/* SCORE GPIOs (GPIO_S0_SC_XX) */
+static const struct soc_gpio_map gpscore_gpio_map[] = {
+	GPIO_FUNC1,			// GPIO_S0_SC[000] - SATA_GP0
+	GPIO_FUNC1,			// GPIO_S0_SC[001] - SATA_GP1
+	GPIO_FUNC1,			// GPIO_S0_SC[002] - SATA_LED_B
+	GPIO_FUNC1,			// GPIO_S0_SC[003] - PCIE_CLKREQ_0
+	GPIO_FUNC1,			// GPIO_S0_SC[004] - PCIE_CLKREQ_1
+	GPIO_FUNC1,			// GPIO_S0_SC[005] - PCIE_CLKREQ_2
+	GPIO_FUNC1,			// GPIO_S0_SC[006] - PCIE_CLKREQ_3
+	GPIO_FUNC2,			// GPIO_S0_SC[007] - SD3_WP
+	GPIO_NC,			// GPIO_S0_SC[008] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[009] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[010] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[011] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[012] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[013] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[014] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[015] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[016] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[017] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[018] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[019] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[020] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[021] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[022] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[023] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[024] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[025] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[026] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[027] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[028] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[029] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[030] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[031] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[032] - No Connect
+	GPIO_FUNC1,			// GPIO_S0_SC[033] - SD3_CLK
+	GPIO_FUNC1,			// GPIO_S0_SC[034] - SD3_D0
+	GPIO_FUNC1,			// GPIO_S0_SC[035] - SD3_D1
+	GPIO_FUNC1,			// GPIO_S0_SC[036] - SD3_D2
+	GPIO_FUNC1,			// GPIO_S0_SC[037] - SD3_D3
+	GPIO_FUNC1,			// GPIO_S0_SC[038] - SD3_CD#
+	GPIO_FUNC1,			// GPIO_S0_SC[039] - SD3_CMD
+	GPIO_FUNC1,			// GPIO_S0_SC[040] - TP12 (SD3_1P8EN)
+	GPIO_FUNC1,			// GPIO_S0_SC[041] - TP11 (/SD3_PWREN)
+	GPIO_NC,			// GPIO_S0_SC[042] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[043] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[044] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[045] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[046] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[047] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[048] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[049] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[050] - No Connect
+	GPIO_FUNC1,			// GPIO_S0_SC[051] - PCU_SMB_DATA
+	GPIO_FUNC1,			// GPIO_S0_SC[052] - PCU_SMB_CLK
+	GPIO_FUNC1,			// GPIO_S0_SC[053] - PCU_SMB_ALERT
+	GPIO_FUNC1,			// GPIO_S0_SC[054] - ILB_8254_SPKR
+	GPIO_FUNC(0, PULL_UP, 20K),	// GPIO_S0_SC[055] - TP8 (GPIO_S0_SC_55)
+	GPIO_FUNC0,			// GPIO_S0_SC[056] - GPIO_S0_SC_56
+	GPIO_FUNC1,			// GPIO_S0_SC[057] - PCU_UART3_TXD
+	GPIO_FUNC(0, PULL_UP, 20K),	// GPIO_S0_SC[058] - TP9 (GPIO_S0_SC_58)
+	GPIO_FUNC0,			// GPIO_S0_SC[059] - HDMI_DCDC_ENB
+	GPIO_FUNC0,			// GPIO_S0_SC[060] - HDMI_LDSW_ENB
+	GPIO_FUNC1,			// GPIO_S0_SC[061] - PCU_UART3_RXD
+	GPIO_FUNC1,			// GPIO_S0_SC[062] - LPE_I2S_CLK
+	GPIO_FUNC1,			// GPIO_S0_SC[063] - LPE_I2S_FRM
+	GPIO_FUNC1,			// GPIO_S0_SC[064] - LPE_I2S_DATIN
+	GPIO_FUNC1,			// GPIO_S0_SC[065] - LPE_I2S_DATOUT
+	GPIO_FUNC1,			// GPIO_S0_SC[066] - SOC_SIO_SPI_CS1
+	GPIO_FUNC1,			// GPIO_S0_SC[067] - SOC_SIO_SPI_MISO
+	GPIO_FUNC1,			// GPIO_S0_SC[068] - SOC_SIO_SPI_MOSI
+	GPIO_FUNC1,			// GPIO_S0_SC[069] - SOC_SIO_SPI_CLK
+	GPIO_FUNC1,			// GPIO_S0_SC[070] - SIO_UART1_RXD
+	GPIO_FUNC1,			// GPIO_S0_SC[071] - SIO_UART1_TXD
+	GPIO_FUNC1,			// GPIO_S0_SC[072] - SIO_UART1_RTSB
+	GPIO_FUNC1,			// GPIO_S0_SC[073] - SIO_UART1_CTSB
+	GPIO_FUNC1,			// GPIO_S0_SC[074] - SIO_UART2_RXD
+	GPIO_FUNC1,			// GPIO_S0_SC[075] - SIO_UART2_TXD
+	GPIO_NC,			// GPIO_S0_SC[076] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[077] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[078] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[079] - No Connect
+	GPIO_FUNC1,			// GPIO_S0_SC[080] - TP6 (SIO_I2C1_SDA)
+	GPIO_FUNC1,			// GPIO_S0_SC[081] - TP5 (SIO_I2C1_SCL)
+	GPIO_NC,			// GPIO_S0_SC[082] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[083] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[084] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[085] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[086] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[087] - No Connect
+	GPIO_FUNC1,			// GPIO_S0_SC[088] - LSS_I2C_SDA
+	GPIO_FUNC1,			// GPIO_S0_SC[089] - LSS_I2C_SCL
+	GPIO_FUNC1,			// GPIO_S0_SC[090] - EXP_I2C_SDA
+	GPIO_FUNC1,			// GPIO_S0_SC[091] - EXP_I2C_SCL
+	GPIO_FUNC(1, PULL_UP, 20K),	// GPIO_S0_SC[092] - TP13
+	GPIO_FUNC(1, PULL_UP, 20K),	// GPIO_S0_SC[093] - TP16
+	GPIO_FUNC1,			// GPIO_S0_SC[094] - SOC_PWM0
+	GPIO_FUNC1,			// GPIO_S0_SC[095] - SOC_PWM1
+	GPIO_NC,			// GPIO_S0_SC[096] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[097] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[098] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[099] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[100] - No Connect
+	GPIO_NC,			// GPIO_S0_SC[101] - No Connect
+	GPIO_END
+};
+
+/* SSUS GPIOs (GPIO_S5) */
+static const struct soc_gpio_map gpssus_gpio_map[] = {
+	GPIO_FUNC(0, PULL_UP, 20K),	// GPIO_S5[00] - SOC_GPIO_S5_0
+	GPIO_FUNC(0, PULL_UP, 20K),	// GPIO_S5[01] - SOC_GPIO_S5_1
+	GPIO_FUNC(0, PULL_UP, 20K),	// GPIO_S5[02] - SOC_GPIO_S5_2
+	GPIO_FUNC6,			// GPIO_S5[03] - mPCIE_WAKEB
+	GPIO_NC,			// GPIO_S5[04] - No Connect
+	GPIO_INPUT,			// GPIO_S5[05] - BOM_OP1
+					// Memory: 0=1GB 1=2GB or 4GB
+	GPIO_INPUT,			// GPIO_S5[06] - BOM_OP2
+	GPIO_INPUT,			// GPIO_S5[07] - BOM_OP3
+	GPIO_NC,			// GPIO_S5[08] - SOC_USB_HOST_EN0
+					// Changed to NC for gpios on ABC
+	GPIO_NC,			// GPIO_S5[09] - SOC_USB_HOST_EN1
+					// Changed to NC for gpios on ABC
+	GPIO_OUT_HIGH_LEGACY,		// GPIO_S5[10] - GPIO_S5_10_UNLOCK
+	GPIO_FUNC0,			// GPIO_S5[11] - SUSPWRDNACK (TP14)
+	GPIO_FUNC0,			// GPIO_S5[12] - PMC_SUSCLK0
+	GPIO_FUNC1,			// GPIO_S5[13] - PMC_SLP_S0IX (TP10)
+	GPIO_FUNC1,			// GPIO_S5[14] - GPIO_S514_J20
+	GPIO_FUNC0,			// GPIO_S5[15] - PMC_PCIE_WAKE_R
+	GPIO_FUNC0,			// GPIO_S5[16] - PMC_PWRBTN
+	GPIO_NC,			// GPIO_S5[17] - No Connect
+	GPIO_FUNC1,			// GPIO_S5[18] - LPCPD_L (TP7)
+	GPIO_FUNC0,			// GPIO_S5[19] - SOC_USB_HOST_OC0
+	GPIO_FUNC0,			// GPIO_S5[20] - SOC_USB_HOST_OC1
+	GPIO_FUNC0,			// GPIO_S5[21] - SOC_SPI_CS1B
+	GPIO_INPUT_PD,			// GPIO_S5[22] - NC or LED D2
+	GPIO_FUNC(0, PULL_UP, 20K),	// GPIO_S5[23] - XDP_H_OBSDATA_A0
+	GPIO_FUNC(0, PULL_UP, 20K),	// GPIO_S5[24] - XDP_H_OBSDATA_A1
+	GPIO_FUNC(0, PULL_UP, 20K),	// GPIO_S5[25] - XDP_H_OBSDATA_A2
+	GPIO_FUNC(0, PULL_UP, 20K),	// GPIO_S5[26] - XDP_H_OBSDATA_A3
+	GPIO_FUNC(0, PULL_UP, 20K),	// GPIO_S5[27] - EXP_GPIO1
+	GPIO_FUNC(0, PULL_UP, 20K),	// GPIO_S5[28] - EXP_GPIO2
+	GPIO_FUNC(0, PULL_UP, 20K),	// GPIO_S5[29] - EXP_GPIO3
+	GPIO_FUNC(0, PULL_UP, 20K),	// GPIO_S5[30] - EXP_GPIO4
+	GPIO_NC,			// GPIO_S5[31] - No Connect
+	GPIO_NC,			// GPIO_S5[32] - No Connect
+	GPIO_NC,			// GPIO_S5[33] - No Connect
+	GPIO_NC,			// GPIO_S5[34] - No Connect
+	GPIO_NC,			// GPIO_S5[35] - No Connect
+	GPIO_NC,			// GPIO_S5[36] - No Connect
+	GPIO_NC,			// GPIO_S5[37] - No Connect
+	GPIO_NC,			// GPIO_S5[38] - No Connect
+	GPIO_NC,			// GPIO_S5[39] - No Connect
+	GPIO_NC,			// GPIO_S5[40] - No Connect
+	GPIO_NC,			// GPIO_S5[41] - No Connect
+	GPIO_NC,			// GPIO_S5[42] - No Connect
+	GPIO_NC,			// GPIO_S5[43] - No Connect
+	GPIO_END
+};
+
+static const u8 core_dedicated_irq[GPIO_MAX_DIRQS] = {
+};
+
+static const u8 sus_dedicated_irq[GPIO_MAX_DIRQS] = {
+};
+
+static struct soc_gpio_config gpio_config = {
+	.ncore = gpncore_gpio_map,
+	.score = gpscore_gpio_map,
+	.ssus = gpssus_gpio_map,
+	.core_dirq = &core_dedicated_irq,
+	.sus_dirq = &sus_dedicated_irq,
+};
+
+struct soc_gpio_config *mainboard_get_gpios(void)
+{
+	return &gpio_config;
+}
diff --git a/src/mainboard/cmr/cmedrobo/irq_tables.c b/src/mainboard/cmr/cmedrobo/irq_tables.c
new file mode 100644
index 0000000..b4d0e24
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/irq_tables.c
@@ -0,0 +1,87 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007-2009 coresystems GmbH
+ * Copyright (C) 2011 The ChromiumOS Authors.  All rights reserved.
+ * Copyright (C) 2013, Intel Corporation.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+
+#include <arch/pirq_routing.h>
+#include <commonlib/helpers.h>
+#include <console/console.h>
+#include <string.h>
+
+#define PIRQA	0x04
+#define PIRQB	0x05
+#define PIRQC	0x07
+#define PIRQD	0x0a
+#define PIRQE	0x0b
+#define PIRQF	0x0c
+#define PIRQG	0x0e
+#define PIRQH	0x0f
+
+#define PCI_IRQS 0xDCB0
+
+#define PIRQ_HEADER_SIZE 	32
+#define IRQ_INFO_SIZE 		16
+
+const struct irq_routing_table intel_irq_routing_table = {
+	PIRQ_SIGNATURE,  /* u32 signature */
+	PIRQ_VERSION,    /* u16 version   */
+	PIRQ_HEADER_SIZE + (IRQ_INFO_SIZE * CONFIG_IRQ_SLOT_COUNT),  /* u16 size */
+	0x00,		 /* Where the interrupt router lies (bus) */
+	(0x1f << 3)|0x0,   /* Where the interrupt router lies (dev) */
+	0,		 /* IRQs devoted exclusively to PCI usage */
+	0x8086,		 /* Vendor */
+	0x0F1C,		 /* Device */
+	0,		 /* miniport */
+	{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* u8 rfu[11] */
+	0x00,		 /* u8 checksum (filled later) */
+	{
+		/* bus,       dev|fn,   {link, bitmap}, {link, bitmap}, {link, bitmap}, {link, bitmap},  slot, rfu */
+		{0x00,(0x02 << 3)|0x0, {{PIRQA, PCI_IRQS}, {0x00, PCI_IRQS}, {0x00, PCI_IRQS}, {0x00, PCI_IRQS}}, 0x0, 0x0}, // GFX INTA-PIRQA
+		{0x00,(0x12 << 3)|0x0, {{PIRQC, PCI_IRQS}, {0x00, PCI_IRQS}, {0x00, PCI_IRQS}, {0x00, PCI_IRQS}}, 0x0, 0x0}, // SD INTA-PIRQC
+		{0x00,(0x13 << 3)|0x0, {{PIRQD, PCI_IRQS}, {0x00, PCI_IRQS}, {0x00, PCI_IRQS}, {0x00, PCI_IRQS}}, 0x0, 0x0}, // SATA INTA-PIRQD
+		{0x00,(0x15 << 3)|0x0, {{PIRQF, PCI_IRQS}, {0x00, PCI_IRQS}, {0x00, PCI_IRQS}, {0x00, PCI_IRQS}}, 0x0, 0x0}, // LPE INTA-PIRQF
+		{0x00,(0x18 << 3)|0x0, {{PIRQB, PCI_IRQS}, {PIRQA, PCI_IRQS}, {PIRQD, PCI_IRQS}, {PIRQC, PCI_IRQS}}, 0x0, 0x0}, // SIO INTA-PIRQB, INTB-PIRQA, INTC-PIRQD, INTD-PIRQC
+		{0x00,(0x1b << 3)|0x0, {{PIRQG, PCI_IRQS}, {0x00, PCI_IRQS}, {0x00, PCI_IRQS}, {0x00, PCI_IRQS}}, 0x0, 0x0}, // HDA INTA-PIRQG
+		{0x00,(0x1c << 3)|0x0, {{PIRQE, PCI_IRQS}, {PIRQF, PCI_IRQS}, {PIRQG, PCI_IRQS}, {PIRQD, PCI_IRQS}}, 0x0, 0x0}, // PCIE INTA-PIRQE, INTB-PIRQF, INTC-PIRQG, INTD-PIRQD
+		{0x00,(0x1d << 3)|0x0, {{PIRQD, PCI_IRQS}, {0x00, PCI_IRQS}, {0x00, PCI_IRQS}, {0x00, PCI_IRQS}}, 0x0, 0x0}, // EHCI INTA-PIRQD
+		{0x00,(0x1e << 3)|0x0, {{PIRQB, PCI_IRQS}, {PIRQD, PCI_IRQS}, {PIRQE, PCI_IRQS}, {PIRQF, PCI_IRQS}}, 0x0, 0x0}, // SIO INTA-PIRQB, INTB-PIRQD, INTC-PIRQE, INTD-PIRQF
+		{0x00,(0x1f << 3)|0x0, {{0x00, PCI_IRQS}, {PIRQG, PCI_IRQS}, {0x00, PCI_IRQS}, {0x00, PCI_IRQS}}, 0x0, 0x0}, // LPC INTB-PIRQG
+		{0x04,(0x00 << 3)|0x0, {{PIRQA, PCI_IRQS}, {0x00, PCI_IRQS}, {0x00, PCI_IRQS}, {0x00, PCI_IRQS}}, 0x4, 0x0}, // ETH INTA-PIRQA
+	}
+};
+
+unsigned long write_pirq_routing_table(unsigned long addr)
+{
+
+	/* Update size */
+	struct irq_routing_table intel_routing_table_copy;
+	memcpy(&intel_routing_table_copy, &intel_irq_routing_table,
+		sizeof(struct irq_routing_table));
+
+	/* Update Checksum */
+	u32 sum = 0;
+	int i;
+	u8 *irt = (u8 *)&intel_routing_table_copy;
+	for (i = 0; i < intel_routing_table_copy.size; i++)
+		sum += irt[i];
+
+	sum = intel_routing_table_copy.checksum - sum;
+
+	if ((sum & 0xff) != intel_routing_table_copy.checksum) {
+		intel_routing_table_copy.checksum = sum & 0xff;
+	}
+
+	return copy_pirq_routing_table(addr, &intel_routing_table_copy);
+}
diff --git a/src/mainboard/cmr/cmedrobo/irqroute.c b/src/mainboard/cmr/cmedrobo/irqroute.c
new file mode 100644
index 0000000..db8c512
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/irqroute.c
@@ -0,0 +1,18 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2013 Google Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+
+#include "irqroute.h"
+
+DEFINE_IRQ_ROUTES;
diff --git a/src/mainboard/cmr/cmedrobo/irqroute.h b/src/mainboard/cmr/cmedrobo/irqroute.h
new file mode 100644
index 0000000..f4e7c05
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/irqroute.h
@@ -0,0 +1,82 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2013 Google Inc.
+ * Copyright (C) 2014 Sage Electronic Engineering, LLC.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+
+#ifndef IRQROUTE_H
+#define IRQROUTE_H
+
+#include <soc/intel/fsp_baytrail/include/soc/irq.h>
+#include <soc/intel/fsp_baytrail/include/soc/pci_devs.h>
+
+/*
+ *IR02h GFX      INT(A)     - PIRQ A
+ *IR10h EMMC     INT(ABCD)  - PIRQ DEFG
+ *IR11h SDIO     INT(A)     - PIRQ B
+ *IR12h SD       INT(A)     - PIRQ C
+ *IR13h SATA     INT(A)     - PIRQ D
+ *IR14h XHCI     INT(A)     - PIRQ E
+ *IR15h LP Audio INT(A)     - PIRQ F
+ *IR17h MMC      INT(A)     - PIRQ H
+ *IR18h SIO      INT(ABCD)  - PIRQ BADC
+ *IR1Ah TXE      INT(A)     - PIRQ F
+ *IR1Bh HD Audio INT(A)     - PIRQ G
+ *IR1Ch PCIe     INT(ABCD)  - PIRQ EFGD
+ *IR1Dh EHCI     INT(A)     - PIRQ D
+ *IR1Eh SIO      INT(ABCD)  - PIRQ BDEF
+ *IR1Fh LPC      INT(ABCD)  - PIRQ EGBC
+ */
+
+/* PCIe bridge routing */
+#define BRIDGE1_DEV PCIE_DEV
+
+/* PCI bridge IRQs need to be updated in both tables and need to match */
+#define PCIE_BRIDGE_IRQ_ROUTES
+
+/* Devices set as A, A, A, A evaluate as 0, and don't get set */
+#define PCI_DEV_PIRQ_ROUTES \
+	PCI_DEV_PIRQ_ROUTE(GFX_DEV,     A, A, A, A), \
+	PCI_DEV_PIRQ_ROUTE(EMMC_DEV,    D, E, F, G), \
+	PCI_DEV_PIRQ_ROUTE(SDIO_DEV,    B, A, A, A), \
+	PCI_DEV_PIRQ_ROUTE(SD_DEV,      C, A, A, A), \
+	PCI_DEV_PIRQ_ROUTE(SATA_DEV,    D, A, A, A), \
+	PCI_DEV_PIRQ_ROUTE(XHCI_DEV,    E, A, A, A), \
+	PCI_DEV_PIRQ_ROUTE(LPE_DEV,     F, A, A, A), \
+	PCI_DEV_PIRQ_ROUTE(MMC45_DEV,   H, A, A, A), \
+	PCI_DEV_PIRQ_ROUTE(SIO1_DEV,    B, A, D, C), \
+	PCI_DEV_PIRQ_ROUTE(TXE_DEV,     F, A, A, A), \
+	PCI_DEV_PIRQ_ROUTE(HDA_DEV,     G, A, A, A), \
+	PCI_DEV_PIRQ_ROUTE(BRIDGE1_DEV, E, F, G, D), \
+	PCI_DEV_PIRQ_ROUTE(EHCI_DEV,    D, A, A, A), \
+	PCI_DEV_PIRQ_ROUTE(SIO2_DEV,    B, D, E, F), \
+	PCI_DEV_PIRQ_ROUTE(PCU_DEV,     E, G, B, C)
+
+/*
+ * Route each PIRQ[A-H] to a PIC IRQ[0-15]
+ * Reserved: 0, 1, 2, 8, 13
+ * PS2 keyboard: 12
+ * ACPI/SCI: 9
+ * Floppy: 6
+ */
+#define PIRQ_PIC_ROUTES \
+	PIRQ_PIC(A,  4), \
+	PIRQ_PIC(B,  5), \
+	PIRQ_PIC(C,  7), \
+	PIRQ_PIC(D, 10), \
+	PIRQ_PIC(E, 11), \
+	PIRQ_PIC(F, 12), \
+	PIRQ_PIC(G, 14), \
+	PIRQ_PIC(H, 15)
+
+#endif /* IRQROUTE_H */
diff --git a/src/mainboard/cmr/cmedrobo/mainboard.c b/src/mainboard/cmr/cmedrobo/mainboard.c
new file mode 100644
index 0000000..0fe1259
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/mainboard.c
@@ -0,0 +1,41 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007-2009 coresystems GmbH
+ * Copyright (C) 2011 The ChromiumOS Authors.  All rights reserved.
+ * Copyright (C) 2014 Sage Electronic Engineering, LLC
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+
+#include <device/device.h>
+
+/*
+ * mainboard_enable is executed as first thing after enumerate_buses().
+ * This is the earliest point to add customization.
+ */
+static void mainboard_enable(struct device *dev)
+{
+}
+
+/*
+ * mainboard_final is executed as one of the last items before loading the
+ * payload.
+ *
+ * This is the latest point to add customization.
+ */
+static void mainboard_final(void *chip_info)
+{
+}
+
+struct chip_operations mainboard_ops = {
+	.enable_dev = mainboard_enable,
+	.final = mainboard_final,
+};
diff --git a/src/mainboard/cmr/cmedrobo/mptable.c b/src/mainboard/cmr/cmedrobo/mptable.c
new file mode 100644
index 0000000..394b29b
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/mptable.c
@@ -0,0 +1,192 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2013-2015 Sage Electronic Engineering, LLC.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+
+#include <console/console.h>
+#include <arch/smp/mpspec.h>
+#include <device/pci.h>
+#include <device/pci_def.h>
+#include <device/pci_ids.h>
+#include <arch/io.h>
+#include <arch/ioapic.h>
+#include <string.h>
+#include <stdint.h>
+#include <arch/cpu.h>
+#include <cpu/x86/lapic.h>
+#include <soc/intel/fsp_baytrail/include/soc/irq.h>
+
+#define MAX_PCI_ENTRIES 0x40
+
+#define INT_A		0
+#define INT_B		1
+#define INT_C		2
+#define INT_D		3
+
+#define PIRQ_A		PIRQA_APIC_IRQ
+#define PIRQ_B		PIRQB_APIC_IRQ
+#define PIRQ_C		PIRQB_APIC_IRQ
+#define PIRQ_D		PIRQD_APIC_IRQ
+#define PIRQ_E		PIRQE_APIC_IRQ
+#define PIRQ_F		PIRQF_APIC_IRQ
+#define PIRQ_G		PIRQG_APIC_IRQ
+#define PIRQ_H		PIRQH_APIC_IRQ
+
+#define PCI_IRQ(dev, intLine)	(((dev) << 2) | intLine)
+
+#define IO_LOCAL_INT(type, intr, apicid, pin)				\
+		smp_write_lintsrc(mc, (type),				\
+				  MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, \
+				  bus_isa, (intr), (apicid), (pin));
+
+#define PCI_INT(bus, dev, pin, line) \
+		smp_write_pci_intsrc(mc, mp_INT, (bus), (dev), (pin), ioapic_id, (line))
+
+
+/*
+ * Find the PIRQ that a device will trigger by looking
+ * it up in the IRQ routing table defined in mainboard/
+ *
+ * return integer 0 - 7 corresponding to PIRQ[A - H]
+ */
+static int get_pirq(struct device *dev)
+{
+	const struct baytrail_irq_route *ir = &global_baytrail_irq_route;
+	u32 devn = PCI_SLOT(dev->path.pci.devfn);
+	u8 pin = pci_read_config8(dev, PCI_INTERRUPT_PIN);
+
+	/*
+	 * Search the global interrupt routing table that is
+	 * defined in mainboard/irqroute.h for the dev we are
+	 * interested in.  Extract the PIRQ value (0-7) that
+	 * we are interested in, where INT PINA is in bits 0-3,
+	 * PINB is in bits 4-7, PINC is in bits 8-11, and PIND is
+	 * in bits 12-15
+	 */
+	return (ir->pcidev[devn] >> ((pin - 1) * 4)) & 7;
+}
+
+static void *smp_write_config_table(void *v)
+{
+	printk(BIOS_SPEW, "Auto generating MP Table\n");
+	struct mp_config_table *mc;
+	int isa_bus;
+	struct device *dev;
+	int i, entry_exists = 0, pirq = 0;
+	u32 busn, devn;
+	u8 intpin = 0;
+	int existing_pci_entries[MAX_PCI_ENTRIES];
+ 
+	for (i = 0; i < MAX_PCI_ENTRIES; i++)
+		existing_pci_entries[i] = -1;
+
+
+	/* Initialize the MP_Table */
+	mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
+
+	mptable_init(mc, LOCAL_APIC_ADDR);
+
+	/*
+	 * Type 0: Processor Entries:
+	 * LAPIC ID, LAPIC Version, CPU Flags:EN/BP,
+	 * CPU Signature (Stepping, Model, Family),
+	 * Feature Flags
+	 */
+	smp_write_processors(mc);
+
+	/*
+	 * Type 1: Bus Entries:
+	 * Bus ID, Bus Type
+	 */
+	mptable_write_buses(mc, NULL, &isa_bus);
+
+	/*
+	 * Type 2: I/O APICs:
+	 * APIC ID, Version, APIC Flags:EN, Address
+	 */
+	u8 ioapic_id = (io_apic_read(VIO_APIC_VADDR, 0x00) >> 24);
+	u8 ioapic_ver = (io_apic_read(VIO_APIC_VADDR, 0x01) & 0xFF);
+
+	smp_write_ioapic(mc, ioapic_id, ioapic_ver, VIO_APIC_VADDR);
+
+	/*
+	 * Type 3: I/O Interrupt Table Entries:
+	 * Int Type, Int Polarity, Int Level, Source Bus ID,
+	 * Source Bus IRQ, Dest APIC ID, Dest PIN#
+	 */
+	mptable_add_isa_interrupts(mc, isa_bus, ioapic_id, 0);
+
+	/*
+	 * Type 3: I/O Interrupt Table Entries for PCI Devices:
+	 * This has the same fields as 'Type 3: I/O Interrupt Table Entries'
+	 * but the Source Bus IRQ field has a slightly different
+	 * definition:
+	 * Bits 1-0: PIRQ pin: INT_A# = 0, INT_B# = 1, INT_C# = 2, INT_D# = 3
+	 * Bits 2-6: Originating PCI Device Number (Not its parent bridge device number)
+	 * Bit 7: Reserved
+	 */
+	for(dev = all_devices; dev; dev = dev->next) {
+
+		if (dev->path.type != DEVICE_PATH_PCI || !dev->enabled)
+			continue;
+
+		/* Get bus, dev, func info */
+		busn = dev->bus->secondary;
+		devn = PCI_SLOT(dev->path.pci.devfn);
+
+		/* Get PCI dev's IRQ info */
+		intpin = pci_read_config8(dev, PCI_INTERRUPT_PIN);
+		if (intpin < 1 || intpin > 4)
+			continue;
+
+		pirq = get_pirq(dev) + PIRQ_A;
+		if (pirq >= PIRQ_A) {
+			entry_exists = 0;
+			for (i = 0; i < MAX_PCI_ENTRIES; i++) {
+				if(PCI_IRQ(devn, (intpin - 1)) == existing_pci_entries[i]) {
+					entry_exists = 1;
+					break;
+				} else if (existing_pci_entries[i] == -1)
+					break;
+			}
+
+			if (i >= MAX_PCI_ENTRIES) {
+				printk(BIOS_WARNING, "Warning: Added the maximum number of PCI entries (%d),"
+						"increase 'MAX_PCI_ENTRIES' to add more\n",
+						MAX_PCI_ENTRIES);
+				break;
+			}
+
+			/* If the entry doesn't already exist, add it */
+			if (!entry_exists) {
+				/* Bus, Dev, Fn, PIRQ[A-H] */
+				PCI_INT(busn, devn, intpin - 1, pirq);
+				existing_pci_entries[i] = PCI_IRQ(devn, (intpin - 1));
+			}
+		}
+	}
+
+	mptable_lintsrc(mc, isa_bus);
+
+	/* There is no extension information... */
+
+	/* Compute the checksums */
+	return mptable_finalize(mc);
+}
+
+unsigned long write_smp_table(unsigned long addr)
+{
+	void *v;
+	v = smp_write_floating_table(addr, 0);	/* ADDR, Enable Virtual Wire */
+	return (unsigned long)smp_write_config_table(v);
+}
diff --git a/src/mainboard/cmr/cmedrobo/romstage.c b/src/mainboard/cmr/cmedrobo/romstage.c
new file mode 100644
index 0000000..ebc3df5
--- /dev/null
+++ b/src/mainboard/cmr/cmedrobo/romstage.c
@@ -0,0 +1,154 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2013 Google Inc.
+ * Copyright (C) 2013 Sage Electronic Engineering, LLC.
+ * Copyright (C) 2014 Intel Corporation
+ * Copyright (C) 2018 CMR Surgical Limited
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+
+#include <soc/romstage.h>
+#include <drivers/intel/fsp1_0/fsp_util.h>
+#include <pc80/mc146818rtc.h>
+#include <console/console.h>
+#include <soc/gpio.h>
+#include <soc/intel/fsp_baytrail/chip.h>
+#include <cpu/x86/tsc.h>
+
+/**
+ * /brief mainboard call for setup that needs to be done before fsp init
+ *
+ */
+void early_mainboard_romstage_entry(void)
+{
+	uint32_t reg;
+	void *lvscc = (void *)(SPI_BASE_ADDRESS + 0xc4);
+	/* 4KiB Erase opcode for N25Q parts. */
+	//reg = 0x20 << 8;
+	/* 64KiB Erase opcode for N25Q parts. */
+	reg = 0xd8 << 8;
+	/* Write granularity 1 byte. */
+	reg |= 0 << 2;
+	/* 4KiB sector erase size. */
+	//reg |= 0x1;
+	/*64KiB sector erase size. */
+	reg |= 0x3;
+ 
+	write32(lvscc, reg);
+	write32(lvscc + 4, reg);
+}
+
+/**
+ * Get function disables - most of these will be done automatically
+ * @param fd_mask
+ * @param fd2_mask
+ */
+void get_func_disables(uint32_t *fd_mask, uint32_t *fd2_mask)
+{
+
+}
+
+/**
+ * /brief mainboard call for setup that needs to be done after fsp init
+ *
+ */
+void late_mainboard_romstage_entry(void)
+{
+
+}
+
+/* Set up the default soldered down memory config for 1GB */
+static const MEMORY_DOWN_DATA minnowmax_memory_config[] = {
+	/* 1066 */
+	{
+	.EnableMemoryDown = 1,
+	.DRAMSpeed = 1,      /* DRAM Speed: 0=800, 1=1066, 2=1333, 3=1600*/
+	.DRAMType = 1,       /* DRAM Type: 0=DDR3, 1=DDR3L, 2=DDR3U, 4=LPDDR2, 5=LPDDR3, 6=DDR4*/
+	.DIMM0Enable = 1,    /* DIMM 0 Enable */
+	.DIMM1Enable = 0,    /* DIMM 1 Enable */
+	.DIMMDWidth = 1,     /* DRAM device data width: 0=x8, 1=x16, 2=x32*/
+	.DIMMDensity = 1,    /* DRAM device data density: 0=1Gb, 1=2Gb, 2=4Gb, 3=8Gb */
+	.DIMMBusWidth = 3,   /* DIMM Bus Width: 0=8bit, 1=16bit, 2=32bit, 3=64bit */
+	.DIMMSides = 0,      /* Ranks Per DIMM: 0=1rank, 1=2rank */
+	.DIMMtCL = 11,        /* tCL */
+	.DIMMtRPtRCD = 11,    /* tRP and tRCD in DRAM clk - 5:12.5ns, 6:15ns, etc. */
+	.DIMMtWR = 12,        /* tWR in DRAM clk  */
+	.DIMMtWTR = 6,       /* tWTR in DRAM clk */
+	.DIMMtRRD = 6,       /* tRRD in DRAM clk */
+	.DIMMtRTP = 6,       /* tRTP in DRAM clk */
+	.DIMMtFAW = 20,      /* tFAW in DRAM clk */
+	},
+	/* 1333 */
+	{
+	.EnableMemoryDown = 1,
+	.DRAMSpeed = 2,      /* DRAM Speed: 0=800, 1=1066, 2=1333, 3=1600*/
+	.DRAMType = 1,       /* DRAM Type: 0=DDR3, 1=DDR3L, 2=DDR3U, 4=LPDDR2, 5=LPDDR3, 6=DDR4*/
+	.DIMM0Enable = 1,    /* DIMM 0 Enable */
+	.DIMM1Enable = 0,    /* DIMM 1 Enable */
+	.DIMMDWidth = 1,     /* DRAM device data width: 0=x8, 1=x16, 2=x32*/
+	.DIMMDensity = 1,    /* DRAM device data density: 0=1Gb, 1=2Gb, 2=4Gb, 3=8Gb */
+	.DIMMBusWidth = 3,   /* DIMM Bus Width: 0=8bit, 1=16bit, 2=32bit, 3=64bit */
+	.DIMMSides = 0,      /* Ranks Per DIMM: 0=1rank, 1=2rank */
+	.DIMMtCL = 9,        /* tCL */
+	.DIMMtRPtRCD = 9,    /* tRP and tRCD in DRAM clk - 5:12.5ns, 6:15ns, etc. */
+	.DIMMtWR = 10,       /* tWR in DRAM clk  */
+	.DIMMtWTR = 5,       /* tWTR in DRAM clk */
+	.DIMMtRRD = 4,       /* tRRD in DRAM clk */
+	.DIMMtRTP = 5,       /* tRTP in DRAM clk */
+	.DIMMtFAW = 30,      /* tFAW in DRAM clk */
+	}
+};
+
+void romstage_fsp_rt_buffer_callback(FSP_INIT_RT_BUFFER *FspRtBuffer)
+{
+	UPD_DATA_REGION *UpdData = FspRtBuffer->Common.UpdDataRgnPtr;
+	u8 use_xhci = UpdData->PcdEnableXhci;
+	u8 gpio5 = 0;
+	int is_1333_sku;
+
+	/*
+	 * The E3827 and E3845 SKUs are fused at 1333MHz DDR3 speeds. There's
+	 * no good way of knowing the SKU'ing so frequency is used as a proxy.
+	 * The E3805, E3815, E3825, and E3826 are all <= 1460MHz while the
+	 * E3827 and E3845 are 1750MHz and 1910MHz, respectively.
+	 */
+	is_1333_sku = !!(tsc_freq_mhz() >= 1700);
+
+	printk(BIOS_INFO, "Using %d MHz DDR3 settings.\n",
+		is_1333_sku ? 1333 : 1066);
+
+	/* Set up soldered down memory parameters for 1GB */
+	UpdData->PcdMemoryParameters = minnowmax_memory_config[is_1333_sku];
+
+	/*
+	 * Minnow Max Board
+	 * Read SSUS gpio 5 to determine memory type
+	 *                    0 : 1GB SKU uses 2Gb density memory
+	 *                    1 : 2GB SKU uses 4Gb density memory
+	 *
+	 * devicetree.cb assumes 1GB SKU board
+	 */
+	configure_ssus_gpio(5, PAD_FUNC0 | PAD_PULL_DISABLE, PAD_VAL_INPUT);
+	gpio5 = read_ssus_gpio(5);
+	if (gpio5)
+		UpdData->PcdMemoryParameters.DIMMDensity
+		+= (DIMM_DENSITY_4G_BIT - DIMM_DENSITY_2G_BIT);
+	printk(BIOS_NOTICE, "%s GB Minnowboard Max detected.\n",
+			gpio5 ? "2 / 4" : "1");
+	/* Update XHCI UPD value if required */
+	get_option(&use_xhci, "use_xhci_over_ehci");
+	if ((use_xhci < 2) && (use_xhci != UpdData->PcdEnableXhci)) {
+		UpdData->PcdEnableXhci = use_xhci;
+		printk(FSP_INFO_LEVEL, "Xhci updated from CMOS:\t\t\t%s\n",
+			UpdData->PcdEnableXhci?"Enabled":"Disabled");
+	}
+}

-- 
To view, visit https://review.coreboot.org/c/coreboot/+/30312
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I40de818d85a15e6515fe6585f9f8c07336f17242
Gerrit-Change-Number: 30312
Gerrit-PatchSet: 1
Gerrit-Owner: Michał Żygowski <michal.zygowski at 3mdeb.com>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20181219/d0b9390d/attachment-0001.html>


More information about the coreboot-gerrit mailing list