public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 0/2] driver: timer: Add Atmel PIT timer driver
@ 2017-08-15  9:40 Wenyou Yang
  2017-08-15  9:40 ` [U-Boot] [PATCH v2 1/2] driver: timer: Add the " Wenyou Yang
  2017-08-15  9:40 ` [U-Boot] [PATCH v2 2/2] board: atmel: Use the new " Wenyou Yang
  0 siblings, 2 replies; 7+ messages in thread
From: Wenyou Yang @ 2017-08-15  9:40 UTC (permalink / raw)
  To: u-boot

Add the Atmel PIT timer driver which supports the driver model
and device tree, and covert the boards to support the new Atmel
PIT timer driver.

Changes in v2:
 - Integrate the PATCH {timer: Add Atmel PIT timer driver} to
   one patch set.
 - Rebase on latest commit of uboot/master (2d3c4ae35).
 - Retain the CONFIG_SYS_TIMER_COUNTER macro in <soc.h>.
 - Convert all atmel boards to support the new timer driver.

Wenyou Yang (2):
  driver: timer: Add the Atmel PIT timer driver
  board: atmel: Use the new PIT timer driver

 arch/arm/dts/sama5d2.dtsi                      | 28 ++++++++
 arch/arm/mach-at91/arm926ejs/Makefile          |  2 +
 arch/arm/mach-at91/armv7/Makefile              |  2 +
 configs/at91sam9260ek_dataflash_cs0_defconfig  |  2 +
 configs/at91sam9260ek_dataflash_cs1_defconfig  |  2 +
 configs/at91sam9260ek_nandflash_defconfig      |  2 +
 configs/at91sam9261ek_dataflash_cs0_defconfig  |  2 +
 configs/at91sam9261ek_dataflash_cs3_defconfig  |  2 +
 configs/at91sam9261ek_nandflash_defconfig      |  2 +
 configs/at91sam9263ek_dataflash_cs0_defconfig  |  2 +
 configs/at91sam9263ek_dataflash_defconfig      |  2 +
 configs/at91sam9263ek_nandflash_defconfig      |  2 +
 configs/at91sam9263ek_norflash_boot_defconfig  |  2 +
 configs/at91sam9263ek_norflash_defconfig       |  2 +
 configs/at91sam9g20ek_2mmc_defconfig           |  2 +
 configs/at91sam9g20ek_2mmc_nandflash_defconfig |  2 +
 configs/at91sam9g20ek_dataflash_cs0_defconfig  |  2 +
 configs/at91sam9g20ek_dataflash_cs1_defconfig  |  2 +
 configs/at91sam9g20ek_nandflash_defconfig      |  2 +
 configs/at91sam9m10g45ek_mmc_defconfig         |  2 +
 configs/at91sam9m10g45ek_nandflash_defconfig   |  2 +
 configs/at91sam9n12ek_mmc_defconfig            |  2 +
 configs/at91sam9n12ek_nandflash_defconfig      |  2 +
 configs/at91sam9n12ek_spiflash_defconfig       |  2 +
 configs/at91sam9rlek_dataflash_defconfig       |  2 +
 configs/at91sam9rlek_mmc_defconfig             |  2 +
 configs/at91sam9rlek_nandflash_defconfig       |  2 +
 configs/at91sam9x5ek_dataflash_defconfig       |  2 +
 configs/at91sam9x5ek_mmc_defconfig             |  2 +
 configs/at91sam9x5ek_nandflash_defconfig       |  2 +
 configs/at91sam9x5ek_spiflash_defconfig        |  2 +
 configs/at91sam9xeek_dataflash_cs0_defconfig   |  2 +
 configs/at91sam9xeek_dataflash_cs1_defconfig   |  2 +
 configs/at91sam9xeek_nandflash_defconfig       |  2 +
 configs/gurnard_defconfig                      |  2 +
 configs/sama5d2_xplained_mmc_defconfig         |  3 +
 configs/sama5d2_xplained_spiflash_defconfig    |  3 +
 configs/sama5d36ek_cmp_mmc_defconfig           |  2 +
 configs/sama5d36ek_cmp_nandflash_defconfig     |  2 +
 configs/sama5d36ek_cmp_spiflash_defconfig      |  2 +
 configs/sama5d3_xplained_mmc_defconfig         |  3 +
 configs/sama5d3_xplained_nandflash_defconfig   |  3 +
 configs/sama5d3xek_mmc_defconfig               |  3 +
 configs/sama5d3xek_nandflash_defconfig         |  3 +
 configs/sama5d3xek_spiflash_defconfig          |  3 +
 configs/sama5d4_xplained_mmc_defconfig         |  3 +
 configs/sama5d4_xplained_nandflash_defconfig   |  3 +
 configs/sama5d4_xplained_spiflash_defconfig    |  3 +
 configs/sama5d4ek_mmc_defconfig                |  3 +
 configs/sama5d4ek_nandflash_defconfig          |  3 +
 configs/sama5d4ek_spiflash_defconfig           |  3 +
 drivers/timer/Kconfig                          |  8 +++
 drivers/timer/Makefile                         |  1 +
 drivers/timer/atmel_pit_timer.c                | 90 ++++++++++++++++++++++++++
 54 files changed, 240 insertions(+)
 create mode 100644 drivers/timer/atmel_pit_timer.c

-- 
2.13.0

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

end of thread, other threads:[~2017-08-26 20:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-15  9:40 [U-Boot] [PATCH v2 0/2] driver: timer: Add Atmel PIT timer driver Wenyou Yang
2017-08-15  9:40 ` [U-Boot] [PATCH v2 1/2] driver: timer: Add the " Wenyou Yang
2017-08-26 13:38   ` Simon Glass
2017-08-26 20:45   ` [U-Boot] [U-Boot, v2, " Tom Rini
2017-08-15  9:40 ` [U-Boot] [PATCH v2 2/2] board: atmel: Use the new " Wenyou Yang
2017-08-26 13:38   ` Simon Glass
2017-08-26 20:45   ` [U-Boot] [U-Boot, v2, " Tom Rini

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