the following patch was just integrated into master:
commit 5c663a9caa0c310687919dbaa6299d150ef89742
Author: Stefan Reinauer <reinauer(a)chromium.org>
Date: Tue Jul 17 16:42:51 2012 -0700
Perform additional programming requirements for SATA
In accordance to PCH EDS 14.1.35.1
Change-Id: I2e6cec6d4f49f404e33a171a8fbd6e4880327896
Signed-off-by: Stefan Reinauer <reinauer(a)google.com>
Build-Tested: build bot (Jenkins) at Sat Aug 4 01:50:26 2012, giving +1
Reviewed-By: Ronald G. Minnich <rminnich(a)gmail.com> at Sat Aug 4 18:06:37 2012, giving +2
See http://review.coreboot.org/1411 for details.
-gerrit
the following patch was just integrated into master:
commit 3bf9ed165efd91cb8d51e42e71528c140b4caf15
Author: Stefan Reinauer <reinauer(a)chromium.org>
Date: Tue Jul 31 16:47:25 2012 -0700
Make the device tree available in the rom stage
We thought about two ways to do this change. The way we decided to try
was to
1. drop all ops from devices in romstage
2. constify all devices in romstage (make them read-only) so we can
compile static.c into romstage
3. the device tree "devices" can be used to read configuration from
the device tree (and nothing else, really)
4. the device tree devices are accessed through struct device * in
romstage only. device_t stays the typedef to int in romstage
5. Use the same static.c file in ramstage and romstage
We declare structs as follows:
ROMSTAGE_CONST struct bus dev_root_links[];
ROMSTAGE_CONST is const in romstage and empty in ramstage; This
forces all of the device tree into the text area.
So a struct looks like this:
static ROMSTAGE_CONST struct device _dev21 = {
#ifndef __PRE_RAM__
.ops = 0,
#endif
.bus = &_dev7_links[0],
.path = {.type=DEVICE_PATH_PCI,{.pci={ .devfn = PCI_DEVFN(0x1c,3)}}},
.enabled = 0,
.on_mainboard = 1,
.subsystem_vendor = 0x1ae0,
.subsystem_device = 0xc000,
.link_list = NULL,
.sibling = &_dev22,
#ifndef __PRE_RAM__
.chip_ops = &southbridge_intel_bd82x6x_ops,
#endif
.chip_info = &southbridge_intel_bd82x6x_info_10,
.next=&_dev22
};
Change-Id: I722454d8d3c40baf7df989f5a6891f6ba7db5727
Signed-off-by: Ronald G. Minnich <rminnich(a)chromium.org>
Signed-off-by: Stefan Reinauer <reinauer(a)google.com>
Build-Tested: build bot (Jenkins) at Sat Aug 4 00:06:15 2012, giving +1
Reviewed-By: Ronald G. Minnich <rminnich(a)gmail.com> at Sat Aug 4 18:05:34 2012, giving +2
See http://review.coreboot.org/1398 for details.
-gerrit
the following patch was just integrated into master:
commit 14007235fe60e386584d75148ae9c65cabcae577
Author: zbao <fishbaozi(a)gmail.com>
Date: Fri Aug 3 15:56:21 2012 +0800
AMD f15 nb: Remove the misleading 0x100 from the limitk (Propagation)
Apply the change
http://review.coreboot.org/1265
to all the AMD northbridge.
Change-Id: Idf3994c1e9ec76cd19db9f740d825cf24059884f
Signed-off-by: Zheng Bao <zheng.bao(a)amd.com>
Signed-off-by: zbao <fishbaozi(a)gmail.com>
Build-Tested: build bot (Jenkins) at Fri Aug 3 08:44:28 2012, giving +1
See http://review.coreboot.org/1404 for details.
-gerrit
the following patch was just integrated into master:
commit cbe5a5b90010158d78913f83817390e332894eae
Author: zbao <fishbaozi(a)gmail.com>
Date: Fri Aug 3 15:44:42 2012 +0800
AMD NB: Limit the device field to 5 bits. (Propagation)
Apply the change
http://review.coreboot.org/1264
to all the AMD northbridge.
Change-Id: Ied74d6f579d2c0350288e2619d7810f8d44fa574
Signed-off-by: Zheng Bao <zheng.bao(a)amd.com>
Signed-off-by: zbao <fishbaozi(a)gmail.com>
Build-Tested: build bot (Jenkins) at Fri Aug 3 08:28:06 2012, giving +1
See http://review.coreboot.org/1403 for details.
-gerrit
the following patch was just integrated into master:
commit 8452211aaea71a5b01b22708fa606e653f336d11
Author: zbao <fishbaozi(a)gmail.com>
Date: Fri Aug 3 15:09:09 2012 +0800
SuperIO LPC47N217: Remove warnings
Change-Id: Id5756f1bb748ae7bec0bcdc21804f5338e850baa
Signed-off-by: Zheng Bao <zheng.bao(a)amd.com>
Signed-off-by: zbao <fishbaozi(a)gmail.com>
Build-Tested: build bot (Jenkins) at Fri Aug 3 08:12:07 2012, giving +1
See http://review.coreboot.org/1402 for details.
-gerrit
the following patch was just integrated into master:
commit 6c493d7bf800fa4e295465f28f8813477121f917
Author: zbao <fishbaozi(a)gmail.com>
Date: Fri Aug 3 11:47:53 2012 +0800
AMD Parmer: Remove warning.
Change-Id: I4ba2d480fa6df5ee741d887d26524b32c1901d73
Signed-off-by: Zheng Bao <zheng.bao(a)amd.com>
Signed-off-by: zbao <fishbaozi(a)gmail.com>
Build-Tested: build bot (Jenkins) at Fri Aug 3 04:28:05 2012, giving +1
See http://review.coreboot.org/1399 for details.
-gerrit