the following patch was just integrated into master:
commit ef9343cac1917308c13c331d4fdef8d1eb799e9a
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Sun May 4 11:42:55 2014 +0300
AGESA: Use common heap allocator
Change-Id: I5df1f0efdef2592b762fe391edaadbca4593e85a
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: http://review.coreboot.org/5689
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick(a)georgi-clan.de>
See http://review.coreboot.org/5689 for details.
-gerrit
the following patch was just integrated into master:
commit 6025efa3472f38d719d850d2143dae0b215db0f3
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Mon May 5 13:20:56 2014 +0300
AGESA: Use common GetBiosCallout()
Change-Id: I9c8f7cc98c65102486e17ec49fa2246211dffc4f
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: http://review.coreboot.org/5688
Tested-by: build bot (Jenkins)
Reviewed-by: Edward O'Callaghan <eocallaghan(a)alterapraxis.com>
Reviewed-by: Patrick Georgi <patrick(a)georgi-clan.de>
See http://review.coreboot.org/5688 for details.
-gerrit
the following patch was just integrated into master:
commit 83cc3b0ed5f522e8ab23b9a9cab8f89bbb65c9c3
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Sun May 4 23:13:08 2014 +0300
AGESA fam15tn fam16kb: Use shared default callouts
Change-Id: Ibbb07ef308c7e92a8a8dfe066f5e3866d5f8aee2
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: http://review.coreboot.org/5687
Tested-by: build bot (Jenkins)
Reviewed-by: Edward O'Callaghan <eocallaghan(a)alterapraxis.com>
Reviewed-by: Patrick Georgi <patrick(a)georgi-clan.de>
See http://review.coreboot.org/5687 for details.
-gerrit
the following patch was just integrated into master:
commit cb989f2c3c6763e03d90be06517b64dd03f1caf4
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Sun May 4 23:13:08 2014 +0300
AGESA fam15tn fam16kb: Use common handler for GNB_GFX_GET_VBIOS_IMAGE
Change-Id: I158993bcb654ef27a9fc6b7e9dc3fc955fb740fa
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: http://review.coreboot.org/5686
Tested-by: build bot (Jenkins)
Reviewed-by: Edward O'Callaghan <eocallaghan(a)alterapraxis.com>
Reviewed-by: Patrick Georgi <patrick(a)georgi-clan.de>
See http://review.coreboot.org/5686 for details.
-gerrit
Edward O'Callaghan (eocallaghan(a)alterapraxis.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5943
-gerrit
commit 015d8057fa48c0e99414f5501ab01488ca656d47
Author: Edward O'Callaghan <eocallaghan(a)alterapraxis.com>
Date: Fri Jun 6 18:29:13 2014 +1000
superio/ite/it8570e: Add rudimentary UART LDN romstage support
No data-sheet was found to find the rest of the LDN's. This just
provides the most rudimentary UART LDN romstage support for basic serial
output.
Change-Id: If928aaa157b493bd4a4649b46713c55802381ed1
Signed-off-by: Edward O'Callaghan <eocallaghan(a)alterapraxis.com>
---
src/superio/ite/Kconfig | 4 ++++
src/superio/ite/it8570e/it8570e.h | 29 +++++++++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/src/superio/ite/Kconfig b/src/superio/ite/Kconfig
index 8a5378d..f388dc3 100644
--- a/src/superio/ite/Kconfig
+++ b/src/superio/ite/Kconfig
@@ -23,6 +23,10 @@
config SUPERIO_ITE_COMMON_ROMSTAGE
bool
+config SUPERIO_ITE_IT8570E
+ bool
+ select SUPERIO_ITE_COMMON_ROMSTAGE
+
config SUPERIO_ITE_IT8661F
bool
select SUPERIO_ITE_COMMON_ROMSTAGE
diff --git a/src/superio/ite/it8570e/it8570e.h b/src/superio/ite/it8570e/it8570e.h
new file mode 100644
index 0000000..52cc8a2
--- /dev/null
+++ b/src/superio/ite/it8570e/it8570e.h
@@ -0,0 +1,29 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2014 Edward O'Callaghan <eocallaghan(a)alterapraxis.com>
+ *
+ * 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; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef SUPERIO_ITE_IT8570E_H
+#define SUPERIO_ITE_IT8570E_H
+
+/* Datasheet: Unknown! Assume basic UART LDN currently */
+
+/* Logical device numbers (LDNs). */
+#define IT8570E_SP1 0x01 /* Com1 */
+
+#endif /* SUPERIO_ITE_IT8570E_H */
Edward O'Callaghan (eocallaghan(a)alterapraxis.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5943
-gerrit
commit 072344379a0c0765ad0469d21b47467b792dd43f
Author: Edward O'Callaghan <eocallaghan(a)alterapraxis.com>
Date: Fri Jun 6 18:29:13 2014 +1000
superio/ite/it8570e: Add rudimentary UART LDN romstage support
No data-sheet was found to find the rest of the LDN's. This just
provides the most rudimentary UART LDN romstage support for basic serial
output.
Change-Id: If928aaa157b493bd4a4649b46713c55802381ed1
Signed-off-by: Edward O'Callaghan <eocallaghan(a)alterapraxis.com>
---
src/superio/ite/Kconfig | 4 ++++
src/superio/ite/it8570e/it8570e.h | 29 +++++++++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/src/superio/ite/Kconfig b/src/superio/ite/Kconfig
index 8a5378d..f388dc3 100644
--- a/src/superio/ite/Kconfig
+++ b/src/superio/ite/Kconfig
@@ -23,6 +23,10 @@
config SUPERIO_ITE_COMMON_ROMSTAGE
bool
+config SUPERIO_ITE_IT8570E
+ bool
+ select SUPERIO_ITE_COMMON_ROMSTAGE
+
config SUPERIO_ITE_IT8661F
bool
select SUPERIO_ITE_COMMON_ROMSTAGE
diff --git a/src/superio/ite/it8570e/it8570e.h b/src/superio/ite/it8570e/it8570e.h
new file mode 100644
index 0000000..2db7549
--- /dev/null
+++ b/src/superio/ite/it8570e/it8570e.h
@@ -0,0 +1,29 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2014 Edward O'Callaghan <eocallaghan(a)alterapraxis.com>
+ *
+ * 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; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef SUPERIO_ITE_IT8570E_H
+#define SUPERIO_ITE_IT8570E_H
+
+/* Datasheet: Unknown! Assume basic UART LDN currently */
+
+/* Logical device numbers (LDNs). */
+#define IT8661F_SP1 0x01 /* Com1 */
+
+#endif /* SUPERIO_ITE_IT8570E_H */
the following patch was just integrated into master:
commit bc844500824fe415ab01bd3efa3d39b5047c823a
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Tue Jun 3 12:04:37 2014 +0300
Drop unused change_i2c_mux()
Change-Id: I3ac39441746d739ac19e831bb67c76405c24ba27
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: http://review.coreboot.org/5925
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Reviewed-by: Idwer Vollering <vidwer(a)gmail.com>
Reviewed-by: Edward O'Callaghan <eocallaghan(a)alterapraxis.com>
See http://review.coreboot.org/5925 for details.
-gerrit