From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chen Baozi Subject: [PATCH 0/5] Add UART support and arch timer initialization for OMAP5 Date: Mon, 5 Aug 2013 19:49:01 +0800 Message-ID: <1375703346-3801-2-git-send-email-baozich@gmail.com> References: <1375703346-3801-1-git-send-email-baozich@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1375703346-3801-1-git-send-email-baozich@gmail.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org Cc: Chen Baozi , xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org Since OMAP UART has a few distinct features than common 8250 UART, Chen Baozi (5): xen: rename ns16550-uart.h to 8250-uart.h and fix some typos xen/arm: add OMAP5432 UART support for early_printk xen/arm: Add the new OMAP UART driver. xen/arm: Introduce platform recognition codes for the OMAP5 xen/arm: Add OMAP5 architected timer initialization codes. config/arm32.mk | 1 + docs/misc/arm/early-printk.txt | 1 + xen/arch/arm/Rules.mk | 4 + xen/arch/arm/arm32/debug-8250.inc | 41 +++ xen/arch/arm/platforms/Makefile | 1 + xen/arch/arm/platforms/omap5.c | 113 ++++++++ xen/arch/arm/time.c | 7 +- xen/drivers/char/Makefile | 1 + xen/drivers/char/ns16550.c | 2 +- xen/drivers/char/omap-uart.c | 358 ++++++++++++++++++++++++ xen/include/asm-arm/platforms/omap5.h | 38 +++ xen/include/xen/{ns16550-uart.h => 8250-uart.h} | 98 ++++++- 12 files changed, 651 insertions(+), 14 deletions(-) create mode 100644 xen/arch/arm/arm32/debug-8250.inc create mode 100644 xen/arch/arm/platforms/omap5.c create mode 100644 xen/drivers/char/omap-uart.c create mode 100644 xen/include/asm-arm/platforms/omap5.h rename xen/include/xen/{ns16550-uart.h => 8250-uart.h} (52%) -- 1.8.1.4