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
     

02 Nov, 2015

1 commit


15 May, 2015

2 commits

  • This cleanup includes:
    - remove of the preprocessor macros which pointed to long name functions
    - update of the names of some regulator uclass driver functions
    - cleanup of the function regulator_autoset()
    - reword of some comments of regulator uclass header file
    - regulator_get_by_platname: check error for uclass_find_* function calls
    - add function: regulator_name_is_unique
    - regulator post_bind(): check regulator name uniqueness
    - fix mistakes in: regulator/Kconfig
    - regulator.h: update comments
    - odroid u3: cleanup the regulator calls

    Signed-off-by: Przemyslaw Marczak
    Acked-by: Simon Glass
    Tested on sandbox:
    Tested-by: Simon Glass

    Przemyslaw Marczak
     
  • This change enables the configs required to init and setup max77686
    regulator driver, using the new driver model pmic and regulator API.
    And also changes the old pmic framework calls to the new ones.

    This commits enables:
    - CONFIG_ERRNO_STR
    - CONFIG_DM_PMIC
    - CONFIG_DM_PMIC_CMD
    - CONFIG_DM_PMIC_MAX77686
    - CONFIG_DM_REGULATOR
    - CONFIG_DM_REGULATOR_CMD
    - CONFIG_DM_REGULATOR_MAX77686

    And removes the unused:
    - CONFIG_DM_I2C_COMPAT
    - CONFIG_POWER
    - CONFIG_POWER_I2C
    - CONFIG_POWER_MAX77686

    Signed-off-by: Przemyslaw Marczak
    Acked-by: Simon Glass

    Przemyslaw Marczak
     

04 Mar, 2015

1 commit


26 Feb, 2015

1 commit


13 Feb, 2015

2 commits


30 Jan, 2015

1 commit


24 Nov, 2014

2 commits

  • To indicate that U-Boot is active, turn on the blue LED.

    Signed-off-by: Suriyan Ramasami
    Acked-by: Przemyslaw Marczak
    Signed-off-by: Minkyu Kang

    Suriyan Ramasami
     
  • The USB host code was missing gpio_request() calls before using the gpio
    functions, causing errors to be printed out.

    As a side note calls to max77686_set_buck_mode(OPMODE_OFF/OPMODE_ON) have
    been removed, as they did not have any effect. This is as per Przemyslaw:
    I looked into the documentation and there is a "ENB8" pin in PMIC package.
    This pin allows steering BUCK8 ON/OFF by the hardware. If ENB8 is set to low
    then you can do on/off. If high, then you cannot change its state by I2C
    write, which seems to be the case with the Odroids.

    Signed-off-by: Suriyan Ramasami
    Acked-by: Przemyslaw Marczak
    Signed-off-by: Minkyu Kang

    Suriyan Ramasami
     

17 Nov, 2014

1 commit


30 Oct, 2014

1 commit

  • Setting gpio value before dm gpio init has no effect,
    so now, odroid gpio settings are moved after the gpio uclass init.

    Using non-requested gpio pin cases printing error messages.
    To avoid this, gpio_request() is added for those gpios.

    Signed-off-by: Przemyslaw Marczak
    Acked-by: Simon Glass
    Signed-off-by: Minkyu Kang

    Przemyslaw Marczak
     

08 Oct, 2014

1 commit


07 Oct, 2014

1 commit


14 Sep, 2014

1 commit

  • Now the types of CONFIG_SYS_{ARCH, CPU, SOC, VENDOR, BOARD, CONFIG_NAME}
    are specified in arch/Kconfig.

    We can delete the ones in arch and board Kconfig files.

    This commit can be easily reproduced by the following command:

    find . -name Kconfig -a ! -path ./arch/Kconfig | xargs sed -i -e '
    /config[[:space:]]SYS_\(ARCH\|CPU\|SOC\|\VENDOR\|BOARD\|CONFIG_NAME\)/ {
    N
    s/\n[[:space:]]*string//
    }
    '

    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     

11 Sep, 2014

1 commit


05 Sep, 2014

3 commits