public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/15] socfpga: sequencer.c cleanups
@ 2015-08-02 23:21 Marek Vasut
  2015-08-02 23:21 ` [U-Boot] [PATCH 01/15] ddr: altera: sequencer: Move qts-generated files to board dir Marek Vasut
                   ` (14 more replies)
  0 siblings, 15 replies; 32+ messages in thread
From: Marek Vasut @ 2015-08-02 23:21 UTC (permalink / raw)
  To: u-boot

This entire series focuses solely on cleaning up the
drivers/ddr/altera/sequencer.c file. After this series,
this one file is totally checkpatch clean and does not
pull in any weird qts-generated macros ; all that is
wrapped in the board file.

This micro-series applies on top of my previous middle-series [1].
This series is available via git at [2].

[1] https://www.mail-archive.com/u-boot at lists.denx.de/msg179742.html
[2] http://git.denx.de/?p=u-boot/u-boot-socfpga.git;a=shortlog;h=refs/heads/07-ddr-part3

Marek Vasut (15):
  ddr: altera: sequencer: Move qts-generated files to board dir
  ddr: altera: sequencer: Clean up mach/sdram.h
  ddr: altera: sequencer: Zap unused params and macros
  ddr: altera: sequencer: Zap bogus redefinition of
    RW_MGR_MEM_NUMBER_OF_RANKS
  ddr: altera: sequencer: Wrap ac_rom_init and inst_rom_init
  ddr: altera: sequencer: Wrap RW_MGR_* macros
  ddr: altera: sequencer: Pluck out RW_MGR_* macros from code
  ddr: altera: sequencer: Wrap IO_* macros
  ddr: altera: sequencer: Pluck out IO_* macros from code
  ddr: altera: sequencer: Wrap misc remaining macros
  ddr: altera: sequencer: Zap VFIFO_SIZE
  ddr: altera: sequencer: Zap SEQ_T(INIT|RESET)_CNTR._VAL
  ddr: altera: sequencer: Pluck out misc macros from code
  ddr: altera: sequencer: Clean data types
  ddr: altera: sequencer: Clean checkpatch issues

 arch/arm/mach-socfpga/include/mach/sdram.h         | 105 ++-
 .../altera/socfpga/qts}/sequencer_auto.h           |   0
 .../altera/socfpga/qts}/sequencer_auto_ac_init.h   |   0
 .../altera/socfpga/qts}/sequencer_auto_inst_init.h |   0
 .../altera/socfpga/qts}/sequencer_defines.h        |   0
 board/altera/socfpga/wrap_sdram_config.c           | 131 ++++
 drivers/ddr/altera/sequencer.c                     | 817 ++++++++++-----------
 drivers/ddr/altera/sequencer.h                     |  94 +--
 8 files changed, 642 insertions(+), 505 deletions(-)
 rename {drivers/ddr/altera => board/altera/socfpga/qts}/sequencer_auto.h (100%)
 rename {drivers/ddr/altera => board/altera/socfpga/qts}/sequencer_auto_ac_init.h (100%)
 rename {drivers/ddr/altera => board/altera/socfpga/qts}/sequencer_auto_inst_init.h (100%)
 rename {drivers/ddr/altera => board/altera/socfpga/qts}/sequencer_defines.h (100%)

-- 
2.1.4

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

end of thread, other threads:[~2015-08-03 16:23 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-02 23:21 [U-Boot] [PATCH 00/15] socfpga: sequencer.c cleanups Marek Vasut
2015-08-02 23:21 ` [U-Boot] [PATCH 01/15] ddr: altera: sequencer: Move qts-generated files to board dir Marek Vasut
2015-08-03 15:54   ` Dinh Nguyen
2015-08-02 23:21 ` [U-Boot] [PATCH 02/15] ddr: altera: sequencer: Clean up mach/sdram.h Marek Vasut
2015-08-03 15:55   ` Dinh Nguyen
2015-08-02 23:21 ` [U-Boot] [PATCH 03/15] ddr: altera: sequencer: Zap unused params and macros Marek Vasut
2015-08-03 15:55   ` Dinh Nguyen
2015-08-02 23:21 ` [U-Boot] [PATCH 04/15] ddr: altera: sequencer: Zap bogus redefinition of RW_MGR_MEM_NUMBER_OF_RANKS Marek Vasut
2015-08-03 15:55   ` Dinh Nguyen
2015-08-02 23:21 ` [U-Boot] [PATCH 05/15] ddr: altera: sequencer: Wrap ac_rom_init and inst_rom_init Marek Vasut
2015-08-03 15:53   ` Dinh Nguyen
2015-08-02 23:21 ` [U-Boot] [PATCH 06/15] ddr: altera: sequencer: Wrap RW_MGR_* macros Marek Vasut
2015-08-03 15:57   ` Dinh Nguyen
2015-08-02 23:21 ` [U-Boot] [PATCH 07/15] ddr: altera: sequencer: Pluck out RW_MGR_* macros from code Marek Vasut
2015-08-03 15:58   ` Dinh Nguyen
2015-08-02 23:21 ` [U-Boot] [PATCH 08/15] ddr: altera: sequencer: Wrap IO_* macros Marek Vasut
2015-08-03 15:59   ` Dinh Nguyen
2015-08-02 23:21 ` [U-Boot] [PATCH 09/15] ddr: altera: sequencer: Pluck out IO_* macros from code Marek Vasut
2015-08-03 16:00   ` Dinh Nguyen
2015-08-02 23:21 ` [U-Boot] [PATCH 10/15] ddr: altera: sequencer: Wrap misc remaining macros Marek Vasut
2015-08-03 16:02   ` Dinh Nguyen
2015-08-02 23:21 ` [U-Boot] [PATCH 11/15] ddr: altera: sequencer: Zap VFIFO_SIZE Marek Vasut
2015-08-03 16:03   ` Dinh Nguyen
2015-08-02 23:21 ` [U-Boot] [PATCH 12/15] ddr: altera: sequencer: Zap SEQ_T(INIT|RESET)_CNTR._VAL Marek Vasut
2015-08-03 16:04   ` Dinh Nguyen
2015-08-02 23:22 ` [U-Boot] [PATCH 13/15] ddr: altera: sequencer: Pluck out misc macros from code Marek Vasut
2015-08-03 16:06   ` Dinh Nguyen
2015-08-03 16:23     ` Marek Vasut
2015-08-02 23:22 ` [U-Boot] [PATCH 14/15] ddr: altera: sequencer: Clean data types Marek Vasut
2015-08-03 16:06   ` Dinh Nguyen
2015-08-02 23:22 ` [U-Boot] [PATCH 15/15] ddr: altera: sequencer: Clean checkpatch issues Marek Vasut
2015-08-03 16:07   ` Dinh Nguyen

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