0002-soc-intel-skylake-Enable-4E-4F-PNP-I-O-ports-in-boot.patch 995 B

12345678910111213141516171819202122232425262728293031
  1. From aa6dd7aa4693bd9ce1fe7f35b9532e5411fc1098 Mon Sep 17 00:00:00 2001
  2. From: Mate Kukri <km@mkukri.xyz>
  3. Date: Fri, 22 Nov 2024 21:26:48 +0000
  4. Subject: [PATCH 02/11] soc/intel/skylake: Enable 4E/4F PNP I/O ports in
  5. bootblock
  6. Change-Id: I57c9d8a9513a268e2ca6a0abd1306cd038598173
  7. Signed-off-by: Mate Kukri <km@mkukri.xyz>
  8. ---
  9. src/soc/intel/skylake/bootblock/pch.c | 4 ++--
  10. 1 file changed, 2 insertions(+), 2 deletions(-)
  11. diff --git a/src/soc/intel/skylake/bootblock/pch.c b/src/soc/intel/skylake/bootblock/pch.c
  12. index df00bb85a9..beaece960b 100644
  13. --- a/src/soc/intel/skylake/bootblock/pch.c
  14. +++ b/src/soc/intel/skylake/bootblock/pch.c
  15. @@ -100,8 +100,8 @@ static void soc_config_pwrmbase(void)
  16. void pch_early_iorange_init(void)
  17. {
  18. - uint16_t io_enables = LPC_IOE_SUPERIO_2E_2F | LPC_IOE_KBC_60_64 |
  19. - LPC_IOE_EC_62_66;
  20. + uint16_t io_enables = LPC_IOE_EC_4E_4F | LPC_IOE_SUPERIO_2E_2F |
  21. + LPC_IOE_KBC_60_64 | LPC_IOE_EC_62_66;
  22. const config_t *config = config_of_soc();
  23. --
  24. 2.39.5