06 Nov, 2017

1 commit

  • As part of my usual round of build testing, output about missing
    MAINTAINERS information was not logged, and thus often overlooked.
    Correct that mistake by ensuring that I log the output of
    genboardscfg.py every time. As part of that, address a number of
    missing MAINTAINERS entires. In the case of a missing file, I have put
    the original submitter down. In the rest of the cases I have added the
    config (and sometimes relevant header file) to the existing set of file
    globs.

    Signed-off-by: Tom Rini

    Tom Rini
     

18 May, 2017

1 commit


06 Dec, 2016

1 commit


27 Oct, 2016

1 commit


11 May, 2016

1 commit


23 Dec, 2015

4 commits


20 Dec, 2015

5 commits


18 Dec, 2015

3 commits

  • The driver is actually for the Designware DWC2 controller.
    This patch renames the global s3c_udc.h header to dwc2_udc.h.

    The rename is done automatically:
    $ sed -i "s/s3c_udc\.h/dwc2_udc.h/g" \
    `git grep "s3c_udc\.h" | cut -d : -f 1`

    Signed-off-by: Marek Vasut

    Marek Vasut
     
  • The driver is actually for the Designware DWC2 controller.
    This patch is the second and final to rename global symbol,
    the s3c_udc_probe() function.

    The rename is done automatically:
    $ sed -i "s/s3c_udc_probe/dwc2_udc_probe/g" \
    `git grep s3c_udc_probe | cut -d : -f 1`

    Signed-off-by: Marek Vasut

    Marek Vasut
     
  • The driver is actually for the Designware DWC2 controller.
    This patch is the first to rename global symbol, the struct
    s3c_plat_otg_data.

    The rename is done automatically:
    $ sed -i "s/s3c_plat_otg_data/dwc2_plat_otg_data/g" \
    `git grep s3c_plat_otg_data | cut -d : -f 1`

    Signed-off-by: Marek Vasut

    Marek Vasut
     

12 Nov, 2015

1 commit


23 Oct, 2015

5 commits


23 Sep, 2015

1 commit


23 Aug, 2015

8 commits


08 Aug, 2015

8 commits

  • Fix build error for socfpga_cyclone5_defconfig:

    board/altera/socfpga/wrap_sdram_config.c:245:26: error: ‘RW_MGR_MEM_NUMBER_OF_RANKS’ undeclared here (not in a function)
    make[2]: *** [spl/board/altera/socfpga/wrap_sdram_config.o] Error 1

    Signed-off-by: Dinh Nguyen

    Dinh Nguyen
     
  • Introduce structure socfpga_sdram_misc_config to wrap the remaining
    misc configuration values in board file. Again, introduce a function,
    socfpga_get_sdram_misc_config(), which returns this the structure. This
    is almost the final step toward wrapping the nasty QTS generated macros
    in board files and reducing the pollution of the namespace.

    Signed-off-by: Marek Vasut
    Acked-by: Dinh Nguyen

    Marek Vasut
     
  • Introduce structure socfpga_sdram_io_config to wrap the IO configuration
    values in board file. Introduce socfpga_get_sdram_io_config() function,
    which returns this the structure. This is another step toward wrapping
    the nasty QTS generated macros in board files and reducing the pollution
    of the namespace.

    Signed-off-by: Marek Vasut
    Acked-by: Dinh Nguyen

    Marek Vasut
     
  • Introduce structure socfpga_sdram_rw_mgr_config to wrap the RW manager
    configuration values in board file. Introduce a complementary function,
    socfpga_get_sdram_rwmgr_config(), which returns this the structure.
    This is another step toward wrapping the nasty QTS generated macros
    in board files and reducing the pollution of the namespace.

    Signed-off-by: Marek Vasut
    Acked-by: Dinh Nguyen

    Marek Vasut
     
  • Introduce two wrapper functions, socfpga_get_seq_ac_init() and
    socfpga_get_seq_inst_init() to avoid direct inclusion of the
    sequencer_auto_ac_init.h and sequencer_auto_inst_init.h QTS
    generated files. This reduces namespace pollution again.

    Signed-off-by: Marek Vasut
    Acked-by: Dinh Nguyen

    Marek Vasut
     
  • Move the files generated by QTS into the board directory, they should not
    be part of the driver files at all.

    Signed-off-by: Marek Vasut
    Acked-by: Dinh Nguyen

    Marek Vasut
     
  • Introduce socfpga_sdram_get_config() function implement in a board file,
    which returns the socfpga_sdram_config structure. This is the last step
    in cleaning up the socfpga_mmr_init_full(), but not the last step which
    allows removing the inclusion of sdram.h from drivers/ddr/altera/sdram.c
    thus far.

    Signed-off-by: Marek Vasut

    Marek Vasut
     
  • Implement new accessor, sysmgr_get_pinmux_table(), used to obtain pinmux
    table and it's size from the QTS-generated pinmux_config.c. The target
    here is again to get rid of poluting global namespace by including the
    pinmux_config.h into it.

    Furthermore, the pinmux_config.h declares some CONFIG_HPS_* macros,
    which are explicitly useless to us in U-Boot. Instead, U-Boot does
    use DT to detect exactly these configuration options. This patch
    makes sure that while this QTS-generated file can stay in the tree,
    these obscure macros do not ooze into the namespace anymore.

    Signed-off-by: Marek Vasut

    Marek Vasut