They're listed in AUTHORS and often incorrect anyway, for example: - What's a "Copyright $year-present"? - Which incarnation of Google (Inc, LLC, ...) is the current copyright holder? - People sometimes have their editor auto-add themselves to files even though they only deleted stuff - Or they let the editor automatically update the copyright year, because why not? - Who is the copyright holder "The coreboot project Authors"? - Or "Generated Code"? Sidestep all these issues by simply not putting these notices in individual files, let's list all copyright holders in AUTHORS instead and use the git history to deal with the rest. Change-Id: I426518e8e18de1c8efcfb7ecb0835df3e257dca1 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39608 Reviewed-by: Wim Vervoorn <wvervoorn@eltan.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: David Hendricks <david.hendricks@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
63 lines
1.7 KiB
C
63 lines
1.7 KiB
C
/*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
*
|
|
* 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 <amdblocks/acpimmio.h>
|
|
#include <device/mmio.h>
|
|
#include <console/console.h>
|
|
#include <delay.h>
|
|
#include <device/device.h>
|
|
#include <device/pci_ops.h>
|
|
|
|
/**********************************************
|
|
* Enable the dedicated functions of the board.
|
|
**********************************************/
|
|
static void mainboard_enable(struct device *dev)
|
|
{
|
|
printk(BIOS_INFO, "Mainboard " CONFIG_MAINBOARD_PART_NUMBER " Enable.\n");
|
|
|
|
/* enable GPP CLK0 thru CLK1 */
|
|
/* disable GPP CLK2 thru SLT_GFX_CLK */
|
|
misc_write8(0, 0xFF);
|
|
misc_write8(1, 0);
|
|
misc_write8(2, 0);
|
|
misc_write8(3, 0);
|
|
misc_write8(4, 0);
|
|
|
|
/*
|
|
* Force the onboard SATA port to GEN2 speed.
|
|
* The offboard SATA port can remain at GEN3.
|
|
*/
|
|
pm_write8(0xda, (pm_read8(0xda) & 0xfb) | 0x04);
|
|
}
|
|
|
|
static void mainboard_final(void *chip_info)
|
|
{
|
|
struct device *ahci_dev;
|
|
uintptr_t ABAR;
|
|
u8 *memptr;
|
|
|
|
ahci_dev = pcidev_on_root(0x11, 0);
|
|
ABAR = pci_read_config32(ahci_dev, 0x24);
|
|
ABAR &= 0xFFFFFC00;
|
|
memptr = (u8 *)(ABAR + 0x100 + 0x80 + 0x2C); /* we're on the 2nd port */
|
|
*memptr = 0x21; /* force to GEN2 and start re-negotiate */
|
|
mdelay (1);
|
|
*memptr = 0x20;
|
|
}
|
|
|
|
struct chip_operations mainboard_ops = {
|
|
.enable_dev = mainboard_enable,
|
|
.final = mainboard_final,
|
|
};
|