aboutsummaryrefslogtreecommitdiff
path: root/src/superio/ite/it8772f/early_serial.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/superio/ite/it8772f/early_serial.c')
-rw-r--r--src/superio/ite/it8772f/early_serial.c21
1 files changed, 2 insertions, 19 deletions
diff --git a/src/superio/ite/it8772f/early_serial.c b/src/superio/ite/it8772f/early_serial.c
index 8bf2964a50..e9db117eae 100644
--- a/src/superio/ite/it8772f/early_serial.c
+++ b/src/superio/ite/it8772f/early_serial.c
@@ -22,6 +22,8 @@
#include <device/pnp_def.h>
#include "it8772f.h"
+/* NOTICE: This file is deprecated, use ite/common instead */
+
/* The base address is 0x2e or 0x4e, depending on config bytes. */
#define SIO_BASE IT8772F_BASE
#define SIO_INDEX SIO_BASE
@@ -85,25 +87,6 @@ void it8772f_enable_3vsbsw(void)
it8772f_exit_conf();
}
-void it8772f_kill_watchdog(void)
-{
- it8772f_enter_conf();
- it8772f_sio_write(IT8772F_CONFIG_REG_LDN, IT8772F_GPIO);
- it8772f_sio_write(IT8772F_CONFIG_REG_WATCHDOG, 0x00);
- it8772f_exit_conf();
-}
-
-/* Enable the serial port(s). */
-void it8772f_enable_serial(device_t dev, u16 iobase)
-{
- it8772f_enter_conf();
- it8772f_sio_write(IT8772F_CONFIG_REG_LDN, dev & 0xff);
- it8772f_sio_write(PNP_IDX_IO0, (iobase >> 8) & 0xff);
- it8772f_sio_write(PNP_IDX_IO0+1, iobase & 0xff);
- it8772f_sio_write(PNP_IDX_EN, 1);
- it8772f_exit_conf();
-}
-
/* Set AC resume to be up to the Southbridge */
void it8772f_ac_resume_southbridge(void)
{