public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 0/9] arm: ls1021atwr: Convert to driver model and enable serial support
@ 2016-01-14  3:38 Bin Meng
  2016-01-14  3:38 ` [U-Boot] [PATCH v2 1/9] Revert "fdt_support: Add multi-serial support for stdout fixup" Bin Meng
                   ` (8 more replies)
  0 siblings, 9 replies; 31+ messages in thread
From: Bin Meng @ 2016-01-14  3:38 UTC (permalink / raw)
  To: u-boot

This series converts Freescale LS1021A-TWR board to driver model.
  - Enable ns16550 serial driver on ls1021atwr_nor configuration
  - Convert LPUART serial driver to driver model
  - Enable LPUART serial driver on ls1021atwr_nor_lpuart configuration

Changes in v2:
- Rewrite the commit message using 'git revert' format.
- Add missing 'base' parameter in the call to _lpuart_serial_tstc()
- Change internal routines' parameter 'reg' to 'base'
- Split to use two separate U_BOOT_DRIVER()
- New patch to split off board device tree
- Create a ls1021a-twr-lpuart.dts for ls1021atwr_nor_lpuart_defconfig

Bin Meng (9):
  Revert "fdt_support: Add multi-serial support for stdout fixup"
  arm: ls1021atwr: Convert to driver model and enable serial support
  serial: lpuart: Move CONFIG_FSL_LPUART to Kconfig
  serial: lpuart: Fix several cosmetic issues
  serial: lpuart: Call local version of setbrg and putc directly
  serial: lpuart: Prepare the driver for DM conversion
  serial: lpuart: Add driver model serial support
  arm: ls1021atwr: Split off board device tree
  arm: ls1021atwr: Enable driver model lpuart serial driver

 arch/arm/dts/Makefile                              |   2 +-
 arch/arm/dts/ls1021a-twr-duart.dts                 |  16 ++
 arch/arm/dts/ls1021a-twr-lpuart.dts                |  16 ++
 arch/arm/dts/{ls1021a-twr.dts => ls1021a-twr.dtsi} |   7 +-
 arch/arm/dts/ls1021a.dtsi                          |   4 -
 common/fdt_support.c                               |  16 +-
 configs/colibri_vf_defconfig                       |   1 +
 configs/colibri_vf_dtb_defconfig                   |   1 +
 configs/ls1021aqds_ddr4_nor_lpuart_defconfig       |   1 +
 configs/ls1021aqds_nor_lpuart_defconfig            |   1 +
 configs/ls1021atwr_nor_defconfig                   |   4 +
 configs/ls1021atwr_nor_lpuart_defconfig            |   5 +
 configs/ls1021atwr_qspi_defconfig                  |   2 +-
 configs/ls1021atwr_sdcard_qspi_defconfig           |   2 +-
 configs/pcm052_defconfig                           |   1 +
 configs/vf610twr_defconfig                         |   1 +
 configs/vf610twr_nand_defconfig                    |   1 +
 doc/driver-model/serial-howto.txt                  |   1 -
 drivers/serial/Kconfig                             |   6 +
 drivers/serial/serial_lpuart.c                     | 286 ++++++++++++++++++---
 include/configs/colibri_vf.h                       |   1 -
 include/configs/ls1021aqds.h                       |   1 -
 include/configs/ls1021atwr.h                       |   3 +-
 include/configs/pcm052.h                           |   1 -
 include/configs/vf610twr.h                         |   1 -
 25 files changed, 311 insertions(+), 70 deletions(-)
 create mode 100644 arch/arm/dts/ls1021a-twr-duart.dts
 create mode 100644 arch/arm/dts/ls1021a-twr-lpuart.dts
 rename arch/arm/dts/{ls1021a-twr.dts => ls1021a-twr.dtsi} (93%)

-- 
1.8.2.1

^ permalink raw reply	[flat|nested] 31+ messages in thread

end of thread, other threads:[~2016-01-21 15:18 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-14  3:38 [U-Boot] [PATCH v2 0/9] arm: ls1021atwr: Convert to driver model and enable serial support Bin Meng
2016-01-14  3:38 ` [U-Boot] [PATCH v2 1/9] Revert "fdt_support: Add multi-serial support for stdout fixup" Bin Meng
2016-01-20 20:26   ` Simon Glass
2016-01-21 15:18     ` Simon Glass
2016-01-14  3:38 ` [U-Boot] [PATCH v2 2/9] arm: ls1021atwr: Convert to driver model and enable serial support Bin Meng
2016-01-20 20:26   ` Simon Glass
2016-01-21 15:18     ` Simon Glass
2016-01-14  3:39 ` [U-Boot] [PATCH v2 3/9] serial: lpuart: Move CONFIG_FSL_LPUART to Kconfig Bin Meng
2016-01-15 21:11   ` Stefan Agner
2016-01-20 20:26     ` Simon Glass
2016-01-21 15:18       ` Simon Glass
2016-01-14  3:39 ` [U-Boot] [PATCH v2 4/9] serial: lpuart: Fix several cosmetic issues Bin Meng
2016-01-20 20:27   ` Simon Glass
2016-01-21 15:18     ` Simon Glass
2016-01-14  3:39 ` [U-Boot] [PATCH v2 5/9] serial: lpuart: Call local version of setbrg and putc directly Bin Meng
2016-01-20 20:27   ` Simon Glass
2016-01-21 15:18     ` Simon Glass
2016-01-14  3:39 ` [U-Boot] [PATCH v2 6/9] serial: lpuart: Prepare the driver for DM conversion Bin Meng
2016-01-20 20:27   ` Simon Glass
2016-01-21 15:18     ` Simon Glass
2016-01-14  3:39 ` [U-Boot] [PATCH v2 7/9] serial: lpuart: Add driver model serial support Bin Meng
2016-01-14  8:14   ` Bhuvanchandra DV
2016-01-20 20:27   ` Simon Glass
2016-01-21 15:18     ` Simon Glass
2016-01-14  3:39 ` [U-Boot] [PATCH v2 8/9] arm: ls1021atwr: Split off board device tree Bin Meng
2016-01-20 20:27   ` Simon Glass
2016-01-21 15:18     ` Simon Glass
2016-01-14  3:39 ` [U-Boot] [PATCH v2 9/9] arm: ls1021atwr: Enable driver model lpuart serial driver Bin Meng
2016-01-18  9:39   ` Huan Wang
2016-01-20 20:27     ` Simon Glass
2016-01-21 15:18       ` Simon Glass

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox