Re: [U-Boot] [PATCH] mmc: fsl_esdhc_imx: fix config check issue when building in SPL

2019-07-15 Thread Peng Fan
> Subject: [PATCH] mmc: fsl_esdhc_imx: fix config check issue when building in > SPL > > Should use CONFIG_IS_ENABLED not IS_ENABLED for clock and regulator > drivers, CONFIG_IS_ENABLED will check the CONFIG_SPL_CLK and > CONFIG_SPL_DM_REGULATOR when building SPL. > > Signed-off-by: Ye Li > ---

Re: [U-Boot] [PATCH v3 2/6] mmc: skip select_mode_and_width for MMC SPI host

2019-07-15 Thread Peng Fan
> Subject: [PATCH v3 2/6] mmc: skip select_mode_and_width for MMC SPI host > > The MMC mode and width are fixed for MMC SPI host hence we skip > sd_select_mode_and_width() and mmc_select_mode_and_width() for MMC > SPI host. > > Signed-off-by: Anup Patel > Reviewed-by: Bin Meng > Tested-by: Bin

Re: [U-Boot] [PATCH] travis.yml: change Ubuntu version to xenial

2019-07-15 Thread Ramon Fried
On July 15, 2019 4:48:43 AM GMT+03:00, Bin Meng wrote: > On Mon, Jul 15, 2019 at 8:26 AM Ramon Fried > wrote: >> >> trusty is getting old, move to xenial (16.04) >> to get updated gcc and other tools. >> >> Signed-off-by: Ramon Fried >> --- >> .travis.yml | 2 +- >> 1 file changed, 1 insertion(

Re: [U-Boot] [PATCH v3 3/6] mmc: mmc_spi: Re-write driver using DM framework

2019-07-15 Thread Peng Fan
> Subject: [PATCH v3 3/6] mmc: mmc_spi: Re-write driver using DM framework > > From: Bhargav Shah > > This patch rewrites MMC SPI driver using U-Boot DM framework and get it's > working on SiFive Unleashed board. > > Signed-off-by: Bhargav Shah > Signed-off-by: Anup Patel > Reviewed-by: Bin M

Re: [U-Boot] [PATCH v3 4/6] cmd: Remove mmc_spi command

2019-07-15 Thread Peng Fan
> Subject: [PATCH v3 4/6] cmd: Remove mmc_spi command > > The mmc_spi command was added to manually setup MMC over SPI bus > using command. This was required by the legacy non-DM MMC_SPI driver. > > With DM based MMC_SPI driver in-place, we can now use all general storge > commands and mmc comman

Re: [U-Boot] [PATCH v7 7/9] riscv: sifive: fu540: Setup ethaddr env variable using OTP

2019-07-15 Thread Ramon Fried
On July 11, 2019 7:28:59 AM GMT+03:00, Anup Patel wrote: > > >> -Original Message- >> From: Troy Benjegerdes >> Sent: Wednesday, July 10, 2019 10:45 PM >> To: Anup Patel ; Sagar Karandikar >> ; Joey Hewitt >> Cc: Rick Chen ; Bin Meng ; >> Lukas Auer ; Simon Glass >> ; Ramon Fried ; Joe

Re: [U-Boot] [PATCH v3 1/2] net: introduce packet capture support

2019-07-15 Thread Ramon Fried
On Fri, Jul 12, 2019 at 12:18 AM Joe Hershberger wrote: > On Sat, Jun 22, 2019 at 1:50 PM Ramon Fried wrote: >> Add support for capturing ethernet packets and storing >> them in memory in PCAP(2.4) format, later to be analyzed by >> any PCAP viewer software (IE. Wireshark) >> >> This feature grea

Re: [U-Boot] [PATCH V2 1/7] mmc: support hs400 enhanced strobe mode

2019-07-15 Thread Peng Fan
> Subject: [PATCH V2 1/7] mmc: support hs400 enhanced strobe mode > > eMMC 5.1+ supports HS400 Enhances Strobe mode without the need for > tuning procedure. > The flow is as following: > - set HS_TIMIMG (Highspeed) > - Host change freq to <= 52Mhz > - set the bus width to Enhanced strobe and DD

Re: [U-Boot] [PATCH v3 7/7] sunxi: H6: Add basic Eachlink H6 Mini support

2019-07-15 Thread Jagan Teki
On Mon, Jul 15, 2019 at 6:57 AM Andre Przywara wrote: > > The Eachlink H6 Mini is a modestly priced TV box, using the Allwinner H6 > SoC. It comes with 3GB of DRAM and 32GB of eMMC in the typical TV box > enclosure. > > This adds a basic device tree and defconfig for it. > > It contrast to the oth

Re: [U-Boot] [PATCH 1/4] armv8: ls1028aqds: Remove the definition of CONFIG_SYS_I2C_EARLY_INIT

2019-07-15 Thread Alex Marginean
On 7/10/2019 10:48 AM, Chuanhua Han wrote: Since i2c uses dm mode, i2 controller will be initialized when reading and writing devices on i2c bus. So there is no need for the original non-dm mode i2c early initialization function call, this patch removed the definition of CONFIG_SYS_I2C_EARLY_INIT

Re: [U-Boot] [PATCH 2/4] configs: ls1028aqds: Enable DM support for pcf2127 rtc

2019-07-15 Thread Alex Marginean
On 7/10/2019 10:48 AM, Chuanhua Han wrote: Enable related configs on all ls1028aqds boards to support pcf2127 rtc DM function. Signed-off-by: Chuanhua Han --- depends on: - http://patchwork.ozlabs.org/project/uboot/list/?series=117203 - http://patchwork.ozlabs.org/project/uboot/

Re: [U-Boot] [PATCH 4/4] armv8: dts: ls1028aqds: Add pcf2127 node under i2c1

2019-07-15 Thread Alex Marginean
On 7/10/2019 10:48 AM, Chuanhua Han wrote: This patch adds the pcf2127-rtc node under the i2c1 for ls1028aqds boards. Signed-off-by: Chuanhua Han --- depends on: - http://patchwork.ozlabs.org/project/uboot/list/?series=117203 - http://patchwork.ozlabs.org/project/uboot/list/?ser

Re: [U-Boot] [PATCH 3/4] armv8: dts: ls1028aqds: Add pca9547 node under the i2c0 controller

2019-07-15 Thread Alex Marginean
On 7/10/2019 10:48 AM, Chuanhua Han wrote: This patch adds pca9547 node to support i2c multiplexer under the i2c0 controller for ls1028aqds boards. Signed-off-by: Chuanhua Han --- depends on: - http://patchwork.ozlabs.org/project/uboot/list/?series=117203 - http://patchwork.ozla

Re: [U-Boot] [EXT] Re: [PATCH 1/2] armv8: ls1028aqds: switch LS1028A QDS board to I2C DM

2019-07-15 Thread Alex Marginean
Hi, On 7/15/2019 9:30 AM, Alex Marginean wrote: Hi Chuanhua, On 7/15/2019 5:37 AM, Chuanhua Han wrote: Hi, I have already sent the patch set of ls1028aqds i2c dm. Please check the patchwork link below: https://patchwork.ozlabs.org/project/uboot/list/?series=1187093 Oh, OK, I didn't see tha

Re: [U-Boot] [EXT] Re: [PATCH 2/4] configs: ls1028aqds: Enable DM support for pcf2127 rtc

2019-07-15 Thread Chuanhua Han
> -Original Message- > From: Alex Marginean > Sent: 2019年7月15日 15:16 > To: Chuanhua Han ; Prabhakar Kushwaha > ; albert.u.b...@aribaud.net; Andy Tang > ; Sudhanshu Gupta ; > Harninder Rai ; Rajesh Bhagat > > Cc: u-boot@lists.denx.de > Subject: [EXT] Re: [U-Boot] [PATCH 2/4] configs: ls1

[U-Boot] Please pull u-boot-mmc

2019-07-15 Thread Peng Fan
Hi Tom, Please pull u-boot-mmc, CI build: https://travis-ci.org/MrVan/u-boot/builds/558716778 --- mmc spi driver model support drop mmc_spi command enhanced Strobe mmc HS400 support minor mmc bug/fixes

Re: [U-Boot] [linux-sunxi] [PATCH] phy: sun4i-usb: Fix PHY0 routing and passby configuration for MUSB

2019-07-15 Thread Jagan Teki
On Mon, May 27, 2019 at 5:21 AM André Przywara wrote: > > On 17/04/2019 12:28, Jagan Teki wrote: > > On Mon, Apr 15, 2019 at 1:52 PM Paul Kocialkowski > > wrote: > > Hi, > > >> Le vendredi 12 avril 2019 à 14:49 +0530, Jagan Teki a écrit : > >>> On Thu, Mar 14, 2019 at 4:08 PM Paul Kocialkowski >

Re: [U-Boot] [PATCH v4 1/6] mtd: spi-nor: add watchdog reset to flash operation loops

2019-07-15 Thread Jagan Teki
+ Vignesh On Wed, Jul 10, 2019 at 8:49 AM Weijie Gao wrote: > > This patch adds WATCHDOG_RESET() to loops for read/write/erase to avoid > watchdog not being feeded in a long period. > > Cc: Vignesh Raghavendra > Signed-off-by: Weijie Gao > --- > drivers/mtd/spi/spi-nor-core.c | 13

Re: [U-Boot] [PATCH v4 0/6] Add spi-mem driver for MediaTek MT7629 SoC

2019-07-15 Thread Jagan Teki
On Wed, Jul 10, 2019 at 8:51 AM Weijie Gao wrote: > > Since u-boot has added the spi-mem framework and replaced the spi-nor > framework, > the mtk_qspi is no longer compatible with the new spi-nor driver. > > This patch series add a new spi-mem driver to replace the mtk_qspi driver, > with one pa

Re: [U-Boot] [linux-sunxi] [PATCH] phy: sun4i-usb: Fix PHY0 routing and passby configuration for MUSB

2019-07-15 Thread Paul Kocialkowski
Hi, On Mon 15 Jul 19, 12:55, Jagan Teki wrote: > On Mon, May 27, 2019 at 5:21 AM André Przywara wrote: > > > > On 17/04/2019 12:28, Jagan Teki wrote: > > > On Mon, Apr 15, 2019 at 1:52 PM Paul Kocialkowski > > > wrote: > > > > Hi, > > > > >> Le vendredi 12 avril 2019 à 14:49 +0530, Jagan Teki a

Re: [U-Boot] [PATCH] spi: spi-mem: Fix read data size issue

2019-07-15 Thread Jagan Teki
On Wed, Jul 10, 2019 at 2:54 PM Ye Li wrote: > > When slave drivers don't set the max_read_size, the spi-mem should directly > use data.nbytes and not limit to any size. But current logic will limit to > the max_write_size. > > Signed-off-by: Ye Li > --- > drivers/spi/spi-mem.c | 8 +--- > 1

Re: [U-Boot] [PATCH] spi: fsl_qspi: Fix flash write issue on i.MX7ULP

2019-07-15 Thread Jagan Teki
On Wed, Jul 10, 2019 at 3:34 PM Ye Li wrote: > > The page write sequence in spi-mem is changed with orignal spi-flash. When > the max_write_size is set by driver, the orignal sequence is > 1. WREN > 2. write max_write_size data to flash > 3. wait for WIP clean > 4. back to #1 if having dat

Re: [U-Boot] [PATCH v4 1/8] x86: Add new slimbootloader CPU type

2019-07-15 Thread Bin Meng
On Mon, Jul 15, 2019 at 5:58 AM Park, Aiden wrote: > > This slimbootloader cpu type is to enable U-Boot as a payload which > runs on top of Slim Bootloader(https://github.com/slimbootloader). > The Slim Bootloader is designed with multi-stage architecture for > the execution from reset vector to O

Re: [U-Boot] [PATCH v4 7/8] board: intel: Add new slimbootloader board

2019-07-15 Thread Bin Meng
On Mon, Jul 15, 2019 at 5:59 AM Park, Aiden wrote: > > Weird blank lines ... > > > > > > > > > > > > > > > > > > > > > Add slimbootloader board to run U-boot as a Slim Bootloader payload > - Add new board/intel/slimbootloader directory with minimum codes > - Add slimbootloader configuration file

Re: [U-Boot] [EXT] Re: [PATCH 2/4] configs: ls1028aqds: Enable DM support for pcf2127 rtc

2019-07-15 Thread Alex Marginean
On 7/15/2019 10:20 AM, Chuanhua Han wrote: -Original Message- From: Alex Marginean Sent: 2019年7月15日 15:16 [...] On 7/10/2019 10:48 AM, Chuanhua Han wrote: Enable related configs on all ls1028aqds boards to support pcf2127 rtc DM function. Signed-off-by: Chuanhua Han --- [...]

Re: [U-Boot] [linux-sunxi] [PATCH] phy: sun4i-usb: Fix PHY0 routing and passby configuration for MUSB

2019-07-15 Thread Jagan Teki
On Mon, Jul 15, 2019 at 1:01 PM Paul Kocialkowski wrote: > > Hi, > > On Mon 15 Jul 19, 12:55, Jagan Teki wrote: > > On Mon, May 27, 2019 at 5:21 AM André Przywara > > wrote: > > > > > > On 17/04/2019 12:28, Jagan Teki wrote: > > > > On Mon, Apr 15, 2019 at 1:52 PM Paul Kocialkowski > > > > wrot

Re: [U-Boot] [EXT] Re: [PATCH 2/4] configs: ls1028aqds: Enable DM support for pcf2127 rtc

2019-07-15 Thread Chuanhua Han
> -Original Message- > From: Alex Marginean > Sent: 2019年7月15日 16:09 > To: Chuanhua Han ; Prabhakar Kushwaha > ; albert.u.b...@aribaud.net; Andy Tang > ; Sudhanshu Gupta ; > Harninder Rai ; Rajesh Bhagat > > Cc: u-boot@lists.denx.de > Subject: Re: [EXT] Re: [U-Boot] [PATCH 2/4] configs:

Re: [U-Boot] [PATCH 1/5] doc: Move README.android-fastboot-protocol to doc/android/

2019-07-15 Thread Eugeniu Rosca
Hi Tom, cc: Jeremy, Stephen, On Sun, Jul 14, 2019 at 01:14:32PM -0400, Tom Rini wrote: > On Sat, Jul 13, 2019 at 10:39:19AM +0200, Eugeniu Rosca wrote: > > > Superseded by https://patchwork.ozlabs.org/patch/1131355/ > > ("[v2,1/5] doc: Move README.android-fastboot-protocol to doc/android/") > >

Re: [U-Boot] [PATCH v3 1/6] spi: Add SiFive SPI driver

2019-07-15 Thread Jagan Teki
On Mon, Jul 8, 2019 at 9:40 AM Anup Patel wrote: > > From: Bhargav Shah > > This patch adds SiFive SPI driver. The driver is 100% DM driver > and it determines input clock using clk framework. > > The SiFive SPI block is found on SiFive FU540 SOC and is used to > access flash and MMC devices on S

Re: [U-Boot] [PATCH 1/1] lib: uuid: alignment error in gen_rand_uuid()

2019-07-15 Thread Eugeniu Rosca
Hi Heinrich, On Sun, Jul 14, 2019 at 11:31:50PM +0200, Heinrich Schuchardt wrote: > Packed structures like struct uuid are not aligned. GCC 9.1 therefore > throws an error when trying to compile gen_rand_uuid(). > > lib/uuid.c: In function ‘gen_rand_uuid’: > lib/uuid.c:244:2: error: converting a

[U-Boot] [PATCH] drivers: net: fsl_enetc: add support for SGMII 2500

2019-07-15 Thread Alex Marginean
SGMII 2500 as supported on NXP SoCs requires AN to be disabled, handle this case in the enetc sgmii init code. Signed-off-by: Alex Marginean --- Depends on: https://patchwork.ozlabs.org/project/uboot/list/?series=117513 drivers/net/fsl_enetc.c | 24 +++- drivers/net/fsl_ene

Re: [U-Boot] [PATCH v3 7/7] sunxi: H6: Add basic Eachlink H6 Mini support

2019-07-15 Thread Andre Przywara
On Mon, 15 Jul 2019 12:41:34 +0530 Jagan Teki wrote: Hi Jagan! > On Mon, Jul 15, 2019 at 6:57 AM Andre Przywara wrote: > > > > The Eachlink H6 Mini is a modestly priced TV box, using the Allwinner H6 > > SoC. It comes with 3GB of DRAM and 32GB of eMMC in the typical TV box > > enclosure. > > >

Re: [U-Boot] [PATCH v4 0/8] x86: Add basic Slim Bootloader payload support

2019-07-15 Thread Andy Shevchenko
On Mon, Jul 15, 2019 at 12:58 AM Park, Aiden wrote: > > This patch is to enable U-Boot as a payload which runs on top of Slim > Bootloader(https://github.com/slimbootloader/slimbootloader) boot firmware > for x86 platforms. > > The Slim Bootloader is designed with multi-stage architecture for th

Re: [U-Boot] [PATCH v4 0/8] x86: Add basic Slim Bootloader payload support

2019-07-15 Thread Andy Shevchenko
On Mon, Jul 15, 2019 at 12:31 PM Andy Shevchenko wrote: > > On Mon, Jul 15, 2019 at 12:58 AM Park, Aiden wrote: > > > > This patch is to enable U-Boot as a payload which runs on top of Slim > > Bootloader(https://github.com/slimbootloader/slimbootloader) boot firmware > > for x86 platforms. > >

Re: [U-Boot] [PATCH v3 1/7] usb_kdb: only process events succesfully received

2019-07-15 Thread Michal Suchánek
On Mon, 15 Jul 2019 06:28:01 +0200 Marek Vasut wrote: > On 7/12/19 4:24 PM, Michal Suchánek wrote: > > On Fri, 12 Jul 2019 06:05:45 +0200 > > Marek Vasut wrote: > > > >> On 7/10/19 5:47 PM, Michal Suchánek wrote: > >>> On Fri, 5 Jul 2019 14:12:36 +0200 > >>> Marek Vasut wrote: > >>> >

Re: [U-Boot] [PATCH v4 0/8] x86: Add basic Slim Bootloader payload support

2019-07-15 Thread Bin Meng
Hi Andy, On Mon, Jul 15, 2019 at 5:31 PM Andy Shevchenko wrote: > > On Mon, Jul 15, 2019 at 12:58 AM Park, Aiden wrote: > > > > This patch is to enable U-Boot as a payload which runs on top of Slim > > Bootloader(https://github.com/slimbootloader/slimbootloader) boot firmware > > for x86 platf

Re: [U-Boot] [PATCH 8/8] Add support for the NXP LS1021A-TSN board

2019-07-15 Thread Vladimir Oltean
On Mon, 15 Jul 2019 at 05:18, Bin Meng wrote: > > Hi Vladimir, > > On Mon, Jul 15, 2019 at 4:04 AM Vladimir Oltean wrote: > > > > Hi Bin, > > > > On Sat, 13 Jul 2019 at 08:05, Bin Meng wrote: > > > > > > Hi Vladimir, > > > > > > On Mon, Jun 24, 2019 at 1:50 AM Vladimir Oltean wrote: > > > > > >

Re: [U-Boot] [PATCH 8/8] Add support for the NXP LS1021A-TSN board

2019-07-15 Thread Bin Meng
Hi Vladimir, On Mon, Jul 15, 2019 at 5:46 PM Vladimir Oltean wrote: > > On Mon, 15 Jul 2019 at 05:18, Bin Meng wrote: > > > > Hi Vladimir, > > > > On Mon, Jul 15, 2019 at 4:04 AM Vladimir Oltean wrote: > > > > > > Hi Bin, > > > > > > On Sat, 13 Jul 2019 at 08:05, Bin Meng wrote: > > > > > > >

Re: [U-Boot] [PATCH v3 7/7] sunxi: H6: Add basic Eachlink H6 Mini support

2019-07-15 Thread Jagan Teki
On Mon, Jul 15, 2019 at 2:51 PM Andre Przywara wrote: > > On Mon, 15 Jul 2019 12:41:34 +0530 > Jagan Teki wrote: > > Hi Jagan! > > > On Mon, Jul 15, 2019 at 6:57 AM Andre Przywara > > wrote: > > > > > > The Eachlink H6 Mini is a modestly priced TV box, using the Allwinner H6 > > > SoC. It comes

Re: [U-Boot] [PATCH v3 7/7] sunxi: H6: Add basic Eachlink H6 Mini support

2019-07-15 Thread Andre Przywara
On Mon, 15 Jul 2019 15:43:10 +0530 Jagan Teki wrote: Hi, > On Mon, Jul 15, 2019 at 2:51 PM Andre Przywara wrote: > > > > On Mon, 15 Jul 2019 12:41:34 +0530 > > Jagan Teki wrote: > > > > Hi Jagan! > > > > > On Mon, Jul 15, 2019 at 6:57 AM Andre Przywara > > > wrote: > > > > > > > > The Ea

Re: [U-Boot] [PATCH 1/1] lib: uuid: alignment error in gen_rand_uuid()

2019-07-15 Thread Heinrich Schuchardt
On 7/15/19 10:42 AM, Eugeniu Rosca wrote: Hi Heinrich, On Sun, Jul 14, 2019 at 11:31:50PM +0200, Heinrich Schuchardt wrote: Packed structures like struct uuid are not aligned. GCC 9.1 therefore throws an error when trying to compile gen_rand_uuid(). lib/uuid.c: In function ‘gen_rand_uuid’: lib

[U-Boot] [PATCH v4 0/1] efi_loader: Fix inconsistencies in efi_add_memory_map usage

2019-07-15 Thread Bryan O'Donoghue
V4: - Squash series down into one patch - Adds RB Heinrich - Ensures comment in efi_free_pages is kept V3: - Takes addition of function description and makes it a separate patch - Subtracts dangling "uint64_t r" in V2 patch Heinrich if you want to take this set as is add a SOB to "efi_loader: A

[U-Boot] [PATCH v4 1/1] efi_loader: Change return type of efi_add_memory_map()

2019-07-15 Thread Bryan O'Donoghue
We currently have some inconsistent use of efi_add_memory_map() throughout the code. In particular the return value of efi_add_memory_map() is not interpreted the same way by various users in the codebase. This patch does the following: - Changes efi_add_memory_map() to return efi_status_t. - Add

Re: [U-Boot] [PATCH v3 7/7] sunxi: H6: Add basic Eachlink H6 Mini support

2019-07-15 Thread Jagan Teki
On Mon, Jul 15, 2019 at 3:51 PM Andre Przywara wrote: > > On Mon, 15 Jul 2019 15:43:10 +0530 > Jagan Teki wrote: > > Hi, > > > On Mon, Jul 15, 2019 at 2:51 PM Andre Przywara > > wrote: > > > > > > On Mon, 15 Jul 2019 12:41:34 +0530 > > > Jagan Teki wrote: > > > > > > Hi Jagan! > > > > > > > On

Re: [U-Boot] [PATCH v3 0/7] sunxi: Add H6 DDR3 DRAM support

2019-07-15 Thread Jagan Teki
On Mon, Jul 15, 2019 at 6:57 AM Andre Przywara wrote: > > A tiny update, dropping "1333" from the LPDDR3 timings filename, because > it actually isn't 1333, as Icenowy pointed out correctly. Also adding > Jernej's review tags. For more details see the Changelog below. > > > So far

[U-Boot] [PATCH 2/3] arm: mvebu: clearfog: set uboot image SD card offset

2019-07-15 Thread Baruch Siach
Armada 38x ROM skips the first SD card offset when loading SPL. This affects the location of the main U-Boot image. SPL MMC code now supports U-Boot image offset based on run-time detection of the boot partition. Use this feature to make the same generated image support both SD card and eMMC boot p

[U-Boot] [PATCH 1/3] spl: mmc: support uboot image offset on main partition

2019-07-15 Thread Baruch Siach
On Armada 38x platforms the ROM code loads SPL from offset 0 of eMMC hardware boot partitions. When there are no boot partitions (i.e. SD card) the ROM skips the first sector that usually contains the (logical) partition table. Since the generated .kwb image contains the main U-Boot image in a fixe

[U-Boot] [PATCH 3/3] arm: mvebu: clearfog: update eMMC documentation

2019-07-15 Thread Baruch Siach
SPL now automatically selects the correct U-Boot image offset for both eMMC and SD card. No need to tweak CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR anymore. Signed-off-by: Baruch Siach --- board/solidrun/clearfog/README | 6 -- 1 file changed, 6 deletions(-) diff --git a/board/solidrun/clearf

Re: [U-Boot] [PATCH 4/4] mx6: Allow configuring the NoC registers on i.MX6QP

2019-07-15 Thread Fabio Estevam
Hi Peng, On Sun, Jul 14, 2019 at 10:55 PM Peng Fan wrote: > Why disable ipu clock? Once the NoC registers are configured we no longer need to keep the IPU clocks turned on. Thanks, Fabio Estevam ___ U-Boot mailing list U-Boot@lists.denx.de https://l

Re: [U-Boot] [PATCH 1/2] drivers: net: driver for MDIO muxes controlled over I2C

2019-07-15 Thread Alexandru Marginean
On 7/13/2019 7:02 AM, Bin Meng wrote: > Hi Alex, > > On Fri, Jul 12, 2019 at 10:21 PM Alex Marginean > wrote: >> >> This driver is used for MDIO muxes driven over I2C. This is currently >> used on Freescale LS1028A QDS board, on which the physical MDIO MUX is >> controlled by an on-board FPGA wh

Re: [U-Boot] [PATCH v3 1/6] spi: Add SiFive SPI driver

2019-07-15 Thread Anup Patel
> -Original Message- > From: Jagan Teki > Sent: Monday, July 15, 2019 2:02 PM > To: Anup Patel > Cc: Rick Chen ; Bin Meng ; > Lukas Auer ; Peng Fan > ; Oleksandr Zhadan and Michael Durrant > ; Palmer Dabbelt > ; Paul Walmsley ; Atish > Patra ; Anup Patel ; Bhargav > Shah ; U-Boot Mailin

Re: [U-Boot] [PATCH] riscv : serial: use rx watermark to indicate rx data is present

2019-07-15 Thread Padmarao Begari
Reviewed-by: Padmarao Begari Tested-by: Padmarao Begari Regards Padmarao On Tue, Jul 9, 2019 at 5:56 PM Sagar Shrikant Kadam wrote: > In y-modem transfer mode, tstc/getc fail to check if there is any > data available / received in RX FIFO, and so y-modem transfer never > succeeds. Using recei

Re: [U-Boot] [PATCH v4] gpio: add gpio-hog support

2019-07-15 Thread Tom Rini
On Mon, Jul 15, 2019 at 08:21:57AM +0200, Heiko Schocher wrote: > Hello Tom, > > Am 14.07.2019 um 15:08 schrieb Tom Rini: > >On Wed, Jun 12, 2019 at 06:11:46AM +0200, Heiko Schocher wrote: > > > >>add gpio-hog support. GPIO hogging is a mechanism > >>providing automatic GPIO request and configurat

Re: [U-Boot] [PATCH] riscv : serial: use rx watermark to indicate rx data is present

2019-07-15 Thread Sagar Kadam
Hi Padmarao, On Mon, Jul 15, 2019 at 5:31 PM Padmarao Begari wrote: > > Reviewed-by: Padmarao Begari > Tested-by: Padmarao Begari > Thank you for the review and testing the changes. > Regards > Padmarao > BR, Sagar Kadam > On Tue, Jul 9, 2019 at 5:56 PM Sagar Shrikant Kadam > wrote: >> >>

Re: [U-Boot] [PATCH] rockchip: dts: rk3399: Add spl-boot-order for Rock PI 4

2019-07-15 Thread Kever Yang
Hi Andy, On 2019/7/4 下午2:52, Andy Yan wrote: RK3399 use sdhci for eMMC and DW MMC for SD Card, and spl will only try to boot from SDMMC if we don't specify other boot device for spl-boot-order. So add sdhci and sdmmc for spl-boot-order here. Signed-off-by: Andy Yan Reviewed-by: Kever Yang

Re: [U-Boot] [PATCH v2 01/99] ram: rk3399: Fix code warnings

2019-07-15 Thread Kever Yang
On 2019/6/17 下午3:31, Jagan Teki wrote: Fix checkpatch warninigs on sdram_rk3399.c like - Avoid CamelCase - Unnecessary parentheses - Alignment should match open parenthesis - multiple blank lines - misspelled - spaces preferred around that '>>' Signed-off-by: Jagan Teki Reviewed-by: Kever Ya

Re: [U-Boot] [PATCH v2 07/99] ram: rk3399: Move macro after include files

2019-07-15 Thread Kever Yang
Jagan, On 2019/6/17 下午3:31, Jagan Teki wrote: Move the macro definitions after include files for better code readability and to satisfy coding style. Signed-off-by: Jagan Teki Maybe all the patches for clean up only for sdram_rk3399.c, with out code logic change, can squash into one  com

Re: [U-Boot] [PATCH v2 08/99] ram: rk3399: Clear PI_175 interrupts in data training

2019-07-15 Thread Kever Yang
On 2019/6/17 下午3:31, Jagan Teki wrote: Clear the PI_175 interrupts before processing actual data training in all relevant calls. This would help to clear interrupt from previous training. Signed-off-by: Jagan Teki Signed-off-by: YouMin Chen Reviewed-by: Kever Yang Thanks,  - Kever ---

Re: [U-Boot] [PATCH 1/1] rockchip: video: rk3288_hdmi: Add missing call to dw_hdmi_enable()【请注意,邮件由u-boot-boun...@lists.denx.de代发】 to dw_hdmi_enable()

2019-07-15 Thread Kever Yang
Hi Niklas, On 2019/7/14 下午6:40, Niklas Schulze wrote: The RK3288 HDMI driver's rk3288_hdmi_enable() currently lacks a call to dw_hdmi_enable(). Thus, the HDMI output never gets enabled. Signed-off-by: Niklas Schulze Cc: Philipp Tomsich Reviewed-by: Kever Yang Thanks,  - Kever --- drive

Re: [U-Boot] [PATCH 1/1] rockchip: video: rk3288_hdmi: Add missing call to dw_hdmi_enable()

2019-07-15 Thread Philipp Tomsich
> On 14.07.2019, at 12:40, Niklas Schulze wrote: > > The RK3288 HDMI driver's rk3288_hdmi_enable() currently lacks a call to > dw_hdmi_enable(). Thus, the HDMI output never gets enabled. > > Signed-off-by: Niklas Schulze > Cc: Philipp Tomsich Reviewed-by: Philipp Tomsich _

Re: [U-Boot] [PATCH v2 1/3] rockchip: rk3399: derive ethaddr from cpuid

2019-07-15 Thread Kever Yang
Hi Rohan, On 2019/7/12 下午10:22, Rohan Garg wrote: Generate a MAC address based on the cpuid available in the efuse block: Use the first 6 byte of the cpuid's SHA256 hash and set the locally administered bits. Also ensure that the multicast bit is cleared. The MAC address is only generated and s

Re: [U-Boot] [PATCH v2 1/4] rockchip: clk: rk3399: handle clk_enable requests for USB3【请注意,邮件由u-boot-boun...@lists.denx.de代发】

2019-07-15 Thread Kever Yang
On 2019/7/2 上午10:05, Kever Yang wrote: Hi Mark, On 07/01/2019 12:01 AM, Mark Kettenis wrote: The "simple" OF glue layer for the Designware USB3 core enables all refernced clocks. These need to be need to be implemented otherwise the driver fails to probe. A dummy implementation that simply

Re: [U-Boot] [PATCH v2 2/4] usb: dwc3-of-simple: Add support for RK3399

2019-07-15 Thread Kever Yang
On 2019/7/1 上午12:01, Mark Kettenis wrote: Add compatible string for RK3399 and enable it by default on Rockchip platforms with USB3 support. Signed-off-by: Mark Kettenis Reviewed-by: Kever Yang Applied to u-boot-rockchip. Thanks, - Kever --- drivers/usb/host/Kconfig | 1 + dri

Re: [U-Boot] [PATCH v2 4/4] rockchip: xhci: Remove RK3399 support

2019-07-15 Thread Kever Yang
On 2019/7/1 上午12:01, Mark Kettenis wrote: Remove RK3399 compatible strings as this driver is no longer used on that SoC. Signed-off-by: Mark Kettenis Reviewed-by: Kever Yang Applied to u-boot-rockchip. Thanks, - Kever --- drivers/usb/host/xhci-rockchip.c | 2 -- 1 file changed, 2 delet

Re: [U-Boot] [PATCH v2 3/4] usb: xhci-dwc3: Add USB2 PHY configuration【请注意,邮件由u-boot-boun...@lists.denx.de代发】 configuration

2019-07-15 Thread Kever Yang
On 2019/7/2 上午10:05, Kever Yang wrote: Hi Mark, On 07/01/2019 12:01 AM, Mark Kettenis wrote: Configure USB2 PHY register based on "phy_type" property and handle all the quirks that are relevant for Rockchip RK3399 SoCs. Signed-off-by: Mark Kettenis Reviewed-by: Kever Yang Applied to u-b

Re: [U-Boot] [PATCH 1/6] arm64: rockchip: rock960: sync dts files from Linux 5.2-rc6【请注意,邮件由u-boot-boun...@lists.denx.de代发】

2019-07-15 Thread Kever Yang
On 2019/7/2 上午10:06, Kever Yang wrote: Hi Peter, On 07/02/2019 12:05 AM, Peter Robinson wrote: Sync the dts files for the Rock960 boards from Linux to get the latest changes and fixes for the devices. Signed-off-by: Peter Robinson Reviewed-by: Kever Yang Applied to u-boot-rockchip. Tha

Re: [U-Boot] [PATCH 2/6] configs: rockchip: rock960: drop options for non-existent HW

2019-07-15 Thread Kever Yang
On 2019/7/2 上午10:07, Kever Yang wrote: Hi Peter, On 07/02/2019 12:05 AM, Peter Robinson wrote: The Rock960 doesn't contain SPI flash so drop related config options. Signed-off-by: Peter Robinson Reviewed-by: Kever Yang Applied to u-boot-rockchip. Thanks, - Kever Thanks, - Kever ---

Re: [U-Boot] [PATCH 3/6] configs: rockchip: rock960: enable pmic and regulator commands

2019-07-15 Thread Kever Yang
On 2019/7/2 上午10:07, Kever Yang wrote: Hi Peter, On 07/02/2019 12:05 AM, Peter Robinson wrote: We have both PMIC and Regulator functionality so it's useful to be able to see output and debug with the commands enabled. Signed-off-by: Peter Robinson Reviewed-by: Kever Yang Applied to u-bo

Re: [U-Boot] [PATCH 4/6] configs: rockchip: rock960: enable DMA for SDHCI controller

2019-07-15 Thread Kever Yang
On 2019/7/2 上午10:07, Kever Yang wrote: Hi Peter, On 07/02/2019 12:05 AM, Peter Robinson wrote: Enable the SDMA controller so the eMMC connected to the SDHCI controller (sdhci@fe33) can make use of it. Signed-off-by: Peter Robinson Reviewed-by: Kever Yang Applied to u-boot-rockchip.

Re: [U-Boot] [PATCH 6/6] configs: rockchip: rock960: enable USB3 support【请注意,邮件由u-boot-boun...@lists.denx.de代发】 support

2019-07-15 Thread Kever Yang
On 2019/7/2 上午10:07, Kever Yang wrote: Hi Peter, On 07/02/2019 12:05 AM, Peter Robinson wrote: Enable USB3 support via the dwc3 XHCI driver. Signed-off-by: Peter Robinson Reviewed-by: Kever Yang Applied to u-boot-rockchip. Thanks, - Kever Thanks, - Kever --- configs/rock960-rk339

Re: [U-Boot] [PATCH 5/6] configs: rockchip: rock960: Add support for USB ethernet adapters

2019-07-15 Thread Kever Yang
On 2019/7/2 上午10:07, Kever Yang wrote: Hi Peter, On 07/02/2019 12:05 AM, Peter Robinson wrote: As the Rock960 doesn't have an onboard wired ethernet interface it's useful to have some common USB wired ethernet devices added to enable testing. Signed-off-by: Peter Robinson Reviewed-by: Keve

Re: [U-Boot] [PATCH v5 1/1] cmd: part: Add 'number' sub-command

2019-07-15 Thread Tom Rini
On Fri, Jul 12, 2019 at 12:25:50PM +0300, Igor Opaniuk wrote: > Hi Tom, > > On Fri, Jun 14, 2019 at 5:22 PM Sam Protsenko > wrote: > > > > Hi Igor, > > > > Once again: > > > > Reviewed-by: Sam Protsenko > > > > Thanks! > > > > On Fri, Jun 14, 2019 at 5:01 PM Igor Opaniuk wrote: > > > > > > From

Re: [U-Boot] [PULL] u-boot-stm32/master for v2019.10-rc1: u-boot-stm32-20190712

2019-07-15 Thread Tom Rini
On Fri, Jul 12, 2019 at 04:04:05PM +, Patrick DELAUNAY wrote: > Hi Tom > > please pull the STM32 related patches for v2019.10-rc1 = u-boot-stm32-20190712 > > Travis CI status: > https://travis-ci.org/patrickdelaunay/u-boot/builds/557765098 > the 4 issues are not related to the pa

[U-Boot] [PATCH] riscv: tools: Fix prelink-riscv to work on big endian hosts

2019-07-15 Thread Marcus Comstedt
All ELF fields whose values are inspected by the code are converted to CPU byteorder first. Values which are copied verbatim (relocation fixups) are not swapped to CPU byteorder and back as it is not needed. Note that it is still assumed that the RISC-V ELF is little endian. In order to support b

Re: [U-Boot] [PATCH 1/3] spl: imx6: Let spl_boot_device return USDHC1 or USDHC2

2019-07-15 Thread Adam Ford
On Thu, May 23, 2019 at 2:11 PM Adam Ford wrote: > > Currently, when the spl_boot_device checks the boot device, it > will only return MMC1 when it's either sd or eMMC regardless > of whether or not it's MMC1 or MMC2. This is a problem when > booting from MMC2 if MMC isn't being manually configur

Re: [U-Boot] [PATCH 1/3] spl: imx6: Let spl_boot_device return USDHC1 or USDHC2

2019-07-15 Thread Stefano Babic
On 15/07/19 15:58, Adam Ford wrote: > On Thu, May 23, 2019 at 2:11 PM Adam Ford wrote: >> >> Currently, when the spl_boot_device checks the boot device, it >> will only return MMC1 when it's either sd or eMMC regardless >> of whether or not it's MMC1 or MMC2. This is a problem when >> booting fro

[U-Boot] [PATCH v1 0/2] imx6ull: Fix missing initial output from UART

2019-07-15 Thread Igor Opaniuk
For Colibri iMX6ULL we have to set pinmux for uart configuration ASAP (ideally before relocation) to get serial console working. Without this we miss almost the half of output (U-boot version, CPU defails, Reset cause, DRAM details etc.). To achieve this we need to force pinctrl-mx6 to get probed

[U-Boot] [PATCH v1 2/2] ARM: dts: imx6ull-colibri: pre-reloc for uart pinmux modes

2019-07-15 Thread Igor Opaniuk
From: Igor Opaniuk Add u-boot,dm-pre-reloc property for uart pinmux configuration nodes, which enables UART as early as possible (before relocation). Without this we miss almost the half of output (U-boot version, CPU defails, Reset cause, DRAM details etc.). Fixes: cd69e8ef9b ("colibri-imx6ull

[U-Boot] [PATCH v1 1/2] pinctrl: nxp: mx6: DM_FLAG_PRE_RELOC by default

2019-07-15 Thread Igor Opaniuk
From: Igor Opaniuk For Colibri iMX6ULL we have to set pinmux configuration ASAP (ideally before relocation) to get serial console working. Without this we miss almost the half of output (U-boot version, CPU defails, Reset cause, DRAM details etc.). To achieve this we need to force pinctrl-mx6 to

[U-Boot] test.py failure in test_ut[ut_dm_pci_ep_base]

2019-07-15 Thread Stephen Warren
Running test.py on sandbox now fails test_ut[ut_dm_pci_ep_base] with: => ut dm pci_ep_base Test: dm_test_pci_ep_base: pci_ep.c [Errno 5] Input/output error I believe that last line is printed by the test harness; presumably the sandbox process crashed, but I haven't checked that. I imagine th

[U-Boot] [PATCH] doc: fitImage: Fix conf number incrementation

2019-07-15 Thread Mickaël Tansorier
Increment conf id to avoid to have two same conf name into one configuration description. Signed-off-by: Mickaël Tansorier --- doc/uImage.FIT/signature.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/uImage.FIT/signature.txt b/doc/uImage.FIT/signature.txt index 78

[U-Boot] [PATCH] doc: fitImage: Cosmetics break lines

2019-07-15 Thread Mickaël Tansorier
Add missing newline before title and subtitle. Signed-off-by: Mickaël Tansorier --- doc/uImage.FIT/signature.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/uImage.FIT/signature.txt b/doc/uImage.FIT/signature.txt index 27bcbef5d6..6ab96fc413 100644 --- a/doc/uImage.FIT/signature.t

Re: [U-Boot] test.py failure in test_ut[ut_dm_pci_ep_base]

2019-07-15 Thread Tom Rini
On Mon, Jul 15, 2019 at 09:14:03AM -0600, Stephen Warren wrote: > Running test.py on sandbox now fails test_ut[ut_dm_pci_ep_base] with: > > => ut dm pci_ep_base > Test: dm_test_pci_ep_base: pci_ep.c > [Errno 5] Input/output error > > I believe that last line is printed by the test harness; presum

[U-Boot] [PATCH] Support raw initrd for qemu riscv64 targets.

2019-07-15 Thread Vagrant Cascadian
This allows booting an initrd without headers generated by mkimage, which is generally needed when using distro_bootcmd with extlinux-style boot menus. Signed-off-by: Vagrant Cascadian --- configs/qemu-riscv64_defconfig | 1 + configs/qemu-riscv64_smode_defconfig | 1 + 2 files changed, 2

Re: [U-Boot] [PATCH 1/1] travis-ci: add qemu-riscv64

2019-07-15 Thread Stephen Warren
On 7/6/19 1:43 AM, Heinrich Schuchardt wrote: Add support for testing qemu-riscv64_defconfig. Applied. Sorry for the delay; I was away on a combination of US holiday and vacation. ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/li

Re: [U-Boot] [PATCH 2/8] net: tsec: Fix offset of MDIO registers for DM_ETH

2019-07-15 Thread Joe Hershberger
On Sun, Jun 23, 2019 at 12:51 PM Vladimir Oltean wrote: > > By convention, the eTSEC MDIO controller nodes are defined in DT at > 0x2d24000 and 0x2d5, but actually U-boot does not touch the > interrupt portion of the register map (MDIO_IEVENTM, MDIO_IMASKM, > MDIO_EMAPM). > > That leaves only

Re: [U-Boot] [PATCH v4 0/8] x86: Add basic Slim Bootloader payload support

2019-07-15 Thread Park, Aiden
Hi Andy, > -Original Message- > From: Andy Shevchenko [mailto:andy.shevche...@gmail.com] > Sent: Monday, July 15, 2019 2:33 AM > To: Park, Aiden > Cc: U-Boot Mailing List ; Simon Glass > ; Bin Meng > Subject: Re: [U-Boot] [PATCH v4 0/8] x86: Add basic Slim Bootloader payload > support >

Re: [U-Boot] [PATCH 1/1] net: assign maintainer for include/net.h

2019-07-15 Thread Joe Hershberger
On Sun, Jul 14, 2019 at 2:55 PM Heinrich Schuchardt wrote: > > include/net.h currently has no maintainer. > > Assign include/net.h to the maintainer of the NET subsystem. > > Signed-off-by: Heinrich Schuchardt Acked-by: Joe Hershberger ___ U-Boot mail

Re: [U-Boot] [PATCH v4 7/8] board: intel: Add new slimbootloader board

2019-07-15 Thread Park, Aiden
Hi Bin, > -Original Message- > From: Bin Meng [mailto:bmeng...@gmail.com] > Sent: Monday, July 15, 2019 12:42 AM > To: Park, Aiden > Cc: U-Boot Mailing List ; Simon Glass > > Subject: Re: [PATCH v4 7/8] board: intel: Add new slimbootloader board > > On Mon, Jul 15, 2019 at 5:59 AM Park,

Re: [U-Boot] [PATCH v4 1/8] x86: Add new slimbootloader CPU type

2019-07-15 Thread Park, Aiden
Hi Bin, > -Original Message- > From: Bin Meng [mailto:bmeng...@gmail.com] > Sent: Monday, July 15, 2019 12:42 AM > To: Park, Aiden > Cc: U-Boot Mailing List ; Simon Glass > > Subject: Re: [PATCH v4 1/8] x86: Add new slimbootloader CPU type > > On Mon, Jul 15, 2019 at 5:58 AM Park, Aiden

Re: [U-Boot] [PATCH v3 1/2] net: introduce packet capture support

2019-07-15 Thread Joe Hershberger
On Mon, Jul 15, 2019 at 2:08 AM Ramon Fried wrote: > > On Fri, Jul 12, 2019 at 12:18 AM Joe Hershberger > wrote: > > On Sat, Jun 22, 2019 at 1:50 PM Ramon Fried wrote: > >> Add support for capturing ethernet packets and storing > >> them in memory in PCAP(2.4) format, later to be analyzed by >

Re: [U-Boot] [PATCH 1/1] net: unaligned copying of unsigned long

2019-07-15 Thread Joe Hershberger
On Sun, Jul 14, 2019 at 3:02 PM Heinrich Schuchardt wrote: > > The inline functions net_read_u32() and net_copy_u32() have been created to > copy unaligned u32. But this is not obvious to the compiler. GCC 9.1 > introduces a check -Werror=address-of-packed-member which leads to a build > error on

Re: [U-Boot] [PATCH] cmd: mdio: prevent data abort when no mdio bus is found

2019-07-15 Thread Joe Hershberger
On Fri, Jul 12, 2019 at 1:59 PM Simon Goldschmidt wrote: > > Calling 'mdio read ...' currently leads to a data abort when no mdio > bus is found. > > To fix this, check if 'bus' is a valid pointer before accessing it. > > Signed-off-by: Simon Goldschmidt Acked-by: Joe Hershberger __

[U-Boot] [PATCH v3 00/15] ram: rk3399: Code cleanup

2019-07-15 Thread Jagan Teki
This is v3, version of code cleanup changes from previous lpddr4 changes[1]. Changes for v3: - squash all code fixes in one patch - order them in proper way [1] https://patchwork.ozlabs.org/cover/1116734/ Any inputs? Jagan. Jagan Teki (15): ram: rk3399: Fix code warnings ram: rk3399: Some t

[U-Boot] [PATCH v3 01/15] ram: rk3399: Fix code warnings

2019-07-15 Thread Jagan Teki
Fix checkpatch warninigs on sdram_rk3399.c like - Avoid CamelCase - Unnecessary parentheses - Alignment should match open parenthesis - multiple blank lines - misspelled - spaces preferred around that '>>' Signed-off-by: Jagan Teki --- drivers/ram/rockchip/sdram_rk3399.c | 48 ++-

[U-Boot] [PATCH v3 03/15] ram: rk3399: s/sdram_params/params

2019-07-15 Thread Jagan Teki
Rename variable name of struct rk3399_sdram_params from sdram_params with params for more code readability. No functionality change. Signed-off-by: Jagan Teki --- drivers/ram/rockchip/sdram_rk3399.c | 160 ++-- 1 file changed, 78 insertions(+), 82 deletions(-) diff --gi

[U-Boot] [PATCH v3 02/15] ram: rk3399: Some trivial code fixes

2019-07-15 Thread Jagan Teki
- Add proper spaces in data training, rk3399_dmc_init, pctl_cfg - Order include files - Move macro after include files Signed-off-by: Jagan Teki --- drivers/ram/rockchip/sdram_rk3399.c | 60 + 1 file changed, 43 insertions(+), 17 deletions(-) diff --git a/drivers/ram

[U-Boot] [PATCH v3 07/15] ram: rk3399: s/ca_tsel_wr_select_n/tsel_wr_select_ca_n

2019-07-15 Thread Jagan Teki
Rename ca_tsel_wr_select_n to tsel_wr_select_ca_n based on the bsp code. No functionality change. Signed-off-by: Jagan Teki Signed-off-by: YouMin Chen --- drivers/ram/rockchip/sdram_rk3399.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/ram/rockchip/sdr

[U-Boot] [PATCH v3 09/15] ram: rk3399: Order tsel variables

2019-07-15 Thread Jagan Teki
Order tsel* variable declarations and assignment in proper and meaningful way. No functionality change. Signed-off-by: Jagan Teki Signed-off-by: YouMin Chen --- drivers/ram/rockchip/sdram_rk3399.c | 37 + 1 file changed, 22 insertions(+), 15 deletions(-) diff --git

[U-Boot] [PATCH v3 11/15] ram: rk3399: s/rk3399_base_params/sdram_base_params

2019-07-15 Thread Jagan Teki
Most of the ddr parameters are common in rk3399_base_params structure and which would reuse it in another controller like px30 in future. So, rename the structure from rk3399_base_params into sdram_base_params. Signed-off-by: Jagan Teki Signed-off-by: YouMin Chen --- arch/arm/include/asm/arch-

  1   2   3   >