Re: [coreboot] [PATCH] Add new ec subdir for Embedded Controllers

2011-01-27 Thread Peter Stuge
Sven Schnelle wrote: Signed-off-by: Sven Schnelle sv...@stackframe.org Acked-by: Peter Stuge pe...@stuge.se r6304 +++ src/mainboard/roda/rk886ex/mainboard_smi.c(working copy) @@ -24,6 +24,7 @@ #include console/console.h #include cpu/x86/smm.h #include

Re: [coreboot] [PATCH] Add new ec subdir for Embedded Controllers

2011-01-25 Thread Sven Schnelle
Hi List, Can somebody please comment on the patch below? Would be nice as this patch is required for the upcoming Thinkpad Patch Series. Cheers, Sven. Sven Schnelle sv...@stackframe.org writes: Stefan Reinauer stefan.reina...@coreboot.org writes: * Sven Schnelle sv...@stackframe.org

Re: [coreboot] [PATCH] Add new ec subdir for Embedded Controllers

2011-01-19 Thread Sven Schnelle
Stefan Reinauer stefan.reina...@coreboot.org writes: * Sven Schnelle sv...@stackframe.org [110117 21:46]: Index: src/ec/acpi/ec.h === --- src/ec/acpi/ec.h (revision 0) +++ src/ec/acpi/ec.h (working copy) @@ -17,9 +17,11 @@ *

Re: [coreboot] [PATCH] Add new ec subdir for Embedded Controllers

2011-01-18 Thread Stefan Reinauer
* Sven Schnelle sv...@stackframe.org [110117 21:46]: Index: src/ec/acpi/ec.h === --- src/ec/acpi/ec.h (revision 0) +++ src/ec/acpi/ec.h (working copy) @@ -17,9 +17,11 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor,

Re: [coreboot] [PATCH] Add new ec subdir for Embedded Controllers

2011-01-18 Thread Peter Stuge
Sven Schnelle wrote: +++ src/ec/acpi/Makefile.inc (revision 0) @@ -0,0 +1 @@ +driver-y += ec.c .. +++ src/mainboard/roda/rk886ex/Makefile.inc (working copy) @@ -18,7 +18,6 @@ ## ramstage-y += m3885.c -ramstage-y += ec.c driver-y += rtl8168.c smm-$(CONFIG_HAVE_SMI_HANDLER)

Re: [coreboot] [PATCH] Add new ec subdir for Embedded Controllers

2011-01-18 Thread Stefan Reinauer
* Peter Stuge pe...@stuge.se [110119 07:55]: Sven Schnelle wrote: +++ src/ec/acpi/Makefile.inc(revision 0) @@ -0,0 +1 @@ +driver-y += ec.c .. +++ src/mainboard/roda/rk886ex/Makefile.inc (working copy) @@ -18,7 +18,6 @@ ## ramstage-y += m3885.c -ramstage-y +=

[coreboot] [PATCH] Add new ec subdir for Embedded Controllers

2011-01-17 Thread Sven Schnelle
This patch adds a new ec/ subdir for embedded controllers (mostly found in Laptops), and converts Getac P470 and Roda RK886EX to use the new ACPI EC instead of having it's own copy for those functions. Signed-off-by: Sven Schnelle sv...@stackframe.org Index: src/Kconfig