soc/intel/dnv: Fix value of B_PCH_GPIO_RX_SCI_ROUTE
The value for that macro should be 1<<19. This is confirmed by the Intel doc and also by N_PCH_GPIO_RX_SCI_ROUTE. See Intel Atom® Processor C3000 Product Family Datasheet (February 2018) : https://www.intel.com/content/www/us/en/products/docs/processors/atom/c-series/c3000-family-datasheet.html Signed-off-by: Patrick Havelange <patrick.havelange@essensium.com> Change-Id: I808d9131032a9796d837e00ad6fb3369b792e597 Reviewed-on: https://review.coreboot.org/c/coreboot/+/33573 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: David Guckian Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
3b42683790
commit
88164787ee
|
@ -182,7 +182,7 @@
|
|||
#define V_PCH_GPIO_RX_APIC_ROUTE_EN 0x01
|
||||
|
||||
// GPIO Input Route SCI
|
||||
#define B_PCH_GPIO_RX_SCI_ROUTE (1 << 10)
|
||||
#define B_PCH_GPIO_RX_SCI_ROUTE (1 << 19)
|
||||
#define N_PCH_GPIO_RX_SCI_ROUTE 19
|
||||
#define V_PCH_GPIO_RX_SCI_ROUTE_DIS 0x00
|
||||
#define V_PCH_GPIO_RX_SCI_ROUTE_EN 0x01
|
||||
|
|
Loading…
Reference in New Issue