From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bin Meng Date: Tue, 26 Jan 2016 14:49:06 +0800 Subject: [U-Boot] [PATCH 1/2 v2] misc: Add simple driver to enable the legacy UART on Winbond Super IO chips In-Reply-To: References: <1453208711-27193-1-git-send-email-sr@denx.de> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Tue, Jan 19, 2016 at 9:15 PM, Bin Meng wrote: > On Tue, Jan 19, 2016 at 9:05 PM, Stefan Roese wrote: >> On most x86 boards, the legacy serial ports (io address 0x3f8/0x2f8) >> are provided by a superio chip connected to the LPC bus. We must >> program the superio chip so that serial ports are available for us. >> >> Signed-off-by: Stefan Roese >> Cc: Bin Meng >> Cc: Simon Glass >> --- >> v2: >> - Address Bin's comments: >> - Make description more generic, so that other functions of this >> Winbond super IO chip may be integrated >> - Lowercase hex value >> - Minor changes to the comments >> >> drivers/misc/Kconfig | 8 ++++++++ >> drivers/misc/Makefile | 1 + >> drivers/misc/winbond_w83627.c | 41 +++++++++++++++++++++++++++++++++++++++++ >> include/winbond_w83627.h | 35 +++++++++++++++++++++++++++++++++++ >> 4 files changed, 85 insertions(+) >> create mode 100644 drivers/misc/winbond_w83627.c >> create mode 100644 include/winbond_w83627.h >> > > Reviewed-by: Bin Meng applied to u-boot-x86/master, thanks!