1. 10 2月, 2017 4 次提交
  2. 09 2月, 2017 6 次提交
  3. 07 2月, 2017 3 次提交
    • B
      x86: qemu: Add a config for 64-bit U-Boot · bda40d56
      Bin Meng 提交于
      Add a new board config which uses 64-bit U-Boot. Supported features
      are the same as the other 64-bit board (Google Chromebook Link).
      It is a start for us to test 64-bit U-Boot easily without the need
      to access a real hardware.
      
      Note CONFIG_SPL_ENV_SUPPORT is required for QEMU 64-bit as without
      this the SPL build fails at the end. This is just a workaround as
      CONFIG_SPL_ENV_SUPPORT is not needed at all.
      
      common/built-in.o:(.data.env_htab+0xc): undefined reference to 'env_flags_validate'
      lib/built-in.o: In function `hsearch_r':
      lib/hashtable.c:380: undefined reference to 'env_callback_init'
      lib/hashtable.c:382: undefined reference to 'env_flags_init'
      make[1]: *** [spl/u-boot-spl] Error 1
      
      Except those SPL options required by 64-bit, compared to 32-bit
      config, the following options are different:
      
      - CONFIG_SYS_MALLOC_F_LEN has to be increased to 0x1000 for SPL.
      - CONFIG_DEBUG_UART has to be included due to the weird issue.
        See TODO comments in arch/x86/cpu/x86_64/cpu.c:arch_setup_gd().
        Once this issue gets fixed, debug uart can be optional.
      Signed-off-by: NBin Meng <bmeng.cn@gmail.com>
      Reviewed-by: NSimon Glass <sjg@chromium.org>
      bda40d56
    • S
      x86: link: Add a config for 64-bit U-Boot · fda4eb48
      Simon Glass 提交于
      Add a new board config which uses 64-bit U-Boot. This is not fully
      functional but is it a start. Missing features:
      
      - SDRAM sizing
      - Booting linux
      - EFI support
      - SCSI device init
      (and others)
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      Reviewed-by: NBin Meng <bmeng.cn@gmail.com>
      fda4eb48
    • S
      x86: link: Set up device tree for SPL · 6935dc1b
      Simon Glass 提交于
      Add the correct pre-relocation tag so that the required device tree nodes
      are present in the SPL device tree.
      
      On x86 it doesn't make a lot of sense to have a separate SPL device tree.
      Since everything is in the same ROM we might as well just use the main
      device tree in both SPL and U-Boot proper. But we haven't implemented that,
      so this is a good first step.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      Reviewed-by: NBin Meng <bmeng.cn@gmail.com>
      6935dc1b
  4. 04 2月, 2017 1 次提交
  5. 31 1月, 2017 7 次提交
  6. 30 1月, 2017 1 次提交
  7. 29 1月, 2017 6 次提交
  8. 28 1月, 2017 7 次提交
  9. 27 1月, 2017 3 次提交
    • P
      imx: mx6sxsabreauto: enable more dm drivers · e389033f
      Peng Fan 提交于
      Enable MMC/I2C/GPIO/PMIC/REGULATOR/PCA953X DM drivers
      for mx6sxsabreauto board. Drop non-DM code.
      
      Note:
      The i.MX DM drivers has such dependency.
        MXC GPIO -> MXC I2C -> PFUZE/REGULATOR
        MXC GPIO -> PCA953X
        MXC GPIO -> FSL_USDHC
      
      So the drivers needs to be enabled all to avoid
      compiling error.
      
      The uboot dm tree log:
      => dm tree
       Class       Probed   Name
       ----------------------------------------
        root        [ + ]    root_driver
        thermal     [   ]    |-- imx_thermal
        simple_bus  [ + ]    |-- soc
        simple_bus  [ + ]    |   |-- aips-bus@02000000
        simple_bus  [   ]    |   |   |-- spba-bus@02000000
        gpio        [ + ]    |   |   |-- gpio@0209c000
        gpio        [ + ]    |   |   |-- gpio@020a0000
        gpio        [ + ]    |   |   |-- gpio@020a4000
        gpio        [ + ]    |   |   |-- gpio@020a8000
        gpio        [ + ]    |   |   |-- gpio@020ac000
        gpio        [ + ]    |   |   |-- gpio@020b0000
        gpio        [ + ]    |   |   |-- gpio@020b4000
        simple_bus  [   ]    |   |   |-- anatop@020c8000
        simple_bus  [   ]    |   |   |-- snvs@020cc000
        pinctrl     [ + ]    |   |   `-- iomuxc@020e0000
        pinconfig   [ + ]    |   |       `-- imx6x-sabreauto
        pinconfig   [ + ]    |   |           |-- i2c2grp-1
        pinconfig   [ + ]    |   |           |-- i2c3grp-2
        pinconfig   [   ]    |   |           |-- uart1grp
        pinconfig   [ + ]    |   |           |-- usdhc3grp
        pinconfig   [   ]    |   |           |-- usdhc3grp-100mhz
        pinconfig   [   ]    |   |           |-- usdhc3grp-200mhz
        pinconfig   [ + ]    |   |           |-- usdhc4grp
        pinconfig   [ + ]    |   |           `-- vccsd3grp
        simple_bus  [ + ]    |   |-- aips-bus@02100000
        mmc         [ + ]    |   |   |-- usdhc@02198000
        mmc         [ + ]    |   |   |-- usdhc@0219c000
        i2c         [ + ]    |   |   |-- i2c@021a4000
        i2c_generic [ + ]    |   |   |   |-- generic_8
        i2c_generic [ + ]    |   |   |   `-- generic_4e
        i2c         [ + ]    |   |   `-- i2c@021a8000
        gpio        [ + ]    |   |       |-- gpio@30
        gpio        [ + ]    |   |       `-- gpio@32
        simple_bus  [   ]    |   `-- aips-bus@02200000
        simple_bus  [   ]    |       `-- spba-bus@02200000
        simple_bus  [ + ]    `-- regulators
        regulator   [ + ]        `-- regulator@0
      Signed-off-by: NPeng Fan <peng.fan@nxp.com>
      Cc: Stefano Babic <sbabic@denx.de>
      e389033f
    • P
      imx: mx6sxsabreauto: enable pinctrl driver · 689d8f99
      Peng Fan 提交于
      Enable pinctrl driver for mx6sxsabreauto board.
      Signed-off-by: NPeng Fan <peng.fan@nxp.com>
      Cc: Stefano Babic <sbabic@denx.de>
      689d8f99
    • P
      imx: mx6sx: add dts for mx6sxsabreauto board · 6301e657
      Peng Fan 提交于
      Add dts for mx6sxsabreauto board.
      dts related files imported fro Linux (commit e5517c2a5a4).
      Signed-off-by: NPeng Fan <peng.fan@nxp.com>
      Cc: Stefano Babic <sbabic@denx.de>
      6301e657
  10. 26 1月, 2017 2 次提交