diff options
author | Mario Scheithauer <mario.scheithauer@siemens.com> | 2023-06-14 15:16:56 +0200 |
---|---|---|
committer | Jakub Czapiga <jacz@semihalf.com> | 2023-06-19 08:46:45 +0000 |
commit | 54fda51e0c77757721dbe3e11b50d58910ab903a (patch) | |
tree | 8c51e7550fb23f9a0c6ebea19053bd0a248f7c1d /src/soc/intel/apollolake/include | |
parent | 0600aa64c3d140b3e561c508d73b50afabe7e990 (diff) |
soc/intel/apollolake: Fix FSP SATA speed limit configuraion
With commit f165bbdcf043 ("soc/intel/apollolake: Make SATA speed limit
configurable") came the expansion to adjust the SATA speed.
Unfortunately, APL FSP-S sets only the default value, so Gen 3, and
ignores the passing parameter value. Since the corresponding register
entry can only be changed once, the setting must be made on coreboot
side before FSP-S is called. This patch fixes the SATA speed
configuration for Apollo Lake CPUs.
Link to Intel Pentium and Celeron N- and J- series datasheet volume 2:
https://web.archive.org/web/20230614130311/https://www.intel.com/content/www/us/en/content-details/334818/intel-pentium-and-celeron-processor-n-and-j-series-datasheet-volume-2.html
BUG=none
TEST=Boot into Linux and check SATA configuration via dmesg
ahci 0000:00:12.0: AHCI 0001.0301 32 slots 1 ports 3 Gbps 0x1 impl SATA
mode
ata1: SATA max UDMA/133 abar m2048@0x9872a000 port 0x9872a100 irq 126
ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Change-Id: I6f55f40941fa618e7de13a5cefe9e17ae34c5c99
Signed-off-by: Mario Scheithauer <mario.scheithauer@siemens.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75820
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/apollolake/include')
-rw-r--r-- | src/soc/intel/apollolake/include/soc/ahci.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/soc/intel/apollolake/include/soc/ahci.h b/src/soc/intel/apollolake/include/soc/ahci.h new file mode 100644 index 0000000000..d129979327 --- /dev/null +++ b/src/soc/intel/apollolake/include/soc/ahci.h @@ -0,0 +1,17 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef _SOC_APOLLOLAKE_AHCI_H_ +#define _SOC_APOLLOLAKE_AHCI_H_ + +#include <soc/soc_chip.h> + +#define AHCI_TMP_BASE_ADDR 0x9872c000 + +#define AHCI_CAP 0x0 +#define AHCI_CAP_ISS_MASK 0x00f00000 +#define AHCI_SPEED(speed) (speed << 20) + +/* Set SATA controller speed. */ +void ahci_set_speed(enum sata_speed_limit speed); + +#endif /* _SOC_APOLLOLAKE_AHCI_H_ */ |