summaryrefslogtreecommitdiff
path: root/src/mainboard/facebook/monolith/com_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/facebook/monolith/com_init.c')
-rw-r--r--src/mainboard/facebook/monolith/com_init.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/mainboard/facebook/monolith/com_init.c b/src/mainboard/facebook/monolith/com_init.c
index f19aba311c..d2519fa26d 100644
--- a/src/mainboard/facebook/monolith/com_init.c
+++ b/src/mainboard/facebook/monolith/com_init.c
@@ -19,11 +19,14 @@
#include <device/pnp_ops.h>
#include "onboard.h"
-#define SERIAL_DEV PNP_DEV(ITE8528_CMD_PORT, 1) /* ITE8528 UART1 */
+#define SERIAL_DEV1 PNP_DEV(ITE8528_CMD_PORT, 1) /* ITE8528 UART1 */
+#define SERIAL_DEV2 PNP_DEV(ITE8528_CMD_PORT, 2) /* ITE8528 UART2 */
void bootblock_mainboard_early_init(void)
{
- /* Enable the serial port inside the EC */
- pnp_set_logical_device(SERIAL_DEV);
- pnp_set_enable(SERIAL_DEV, 1);
+ /* Enable the serial ports inside the EC */
+ pnp_set_logical_device(SERIAL_DEV1);
+ pnp_set_enable(SERIAL_DEV1, 1);
+ pnp_set_logical_device(SERIAL_DEV2);
+ pnp_set_enable(SERIAL_DEV2, 1);
}