public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Peng Fan <van.freenix@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH V3 00/31] imx: add i.MX8M support and i.MX8MQ EVK
Date: Wed, 10 Jan 2018 10:34:37 +0800	[thread overview]
Message-ID: <20180110023437.GB22602@shlinux2> (raw)
In-Reply-To: <CAOMZO5DUwKwDUOAoC2RFRV=YOns5zJxuBGgrpKFDHoms=Fxz1w@mail.gmail.com>

On Wed, Jan 10, 2018 at 12:13:42AM -0200, Fabio Estevam wrote:
>On Wed, Jan 10, 2018 at 12:09 AM, Fabio Estevam <festevam@gmail.com> wrote:
>
>> It would be better to generate the series against U-Boot 2018.11 master.
>
>2018.01 I mean :-)

ok. I'll post out V4 based on Tom's master tree with.
this https://patchwork.ozlabs.org/patch/855027/
"arm: imx: Rework i.MX specific commands to be excluded from SPL" applied.

Thanks,
Peng

-- 

      reply	other threads:[~2018-01-10  2:34 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-09 12:11 [U-Boot] [PATCH V3 00/31] imx: add i.MX8M support and i.MX8MQ EVK Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 01/31] imx: add i.MX8M into Kconfig Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 02/31] imx: mx8m: add register definition header file Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 03/31] imx: mx8m: add pin " Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 04/31] time: add wait_mask_set/clr_timeout helper functions Peng Fan
2018-01-16 14:56   ` Simon Glass
2018-01-09 12:11 ` [U-Boot] [PATCH V3 05/31] imx: mx8m: add clock driver Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 06/31] imx: add sip function Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 07/31] imx: boot_mode: add USB_BOOT entry Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 08/31] imx: cpu: update cpu file to support i.MX8M Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 09/31] imx: spl: implement spl_boot_device for i.MX8M Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 10/31] imx: add i.MX8MQ SoC Revision and is_mx8m helper Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 11/31] imx: add pad settings bit definition for i.MX8M Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 12/31] imx: cpu: move speed/temp to common cpu Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 13/31] imx: cpu: add cpu speed/grade for i.MX8M Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 14/31] imx: refactor imx_get_mac_from_fuse Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 15/31] imx: cleanup bootaux Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 16/31] imx: bootaux: support i.MX8M Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 17/31] imx: mx7: move get_boot_device to cpu.c Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 18/31] imx: cpu: support get_boot_device for i.MX8M Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 19/31] imx: mx7: move mmc env code to mmc_env.c Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 20/31] imx: mx8m: add soc related settings and files Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 21/31] imx: makefile: compile files for i.MX8M Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 22/31] misc: ocotp: add i.MX8M support Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 23/31] mmc: fsl_esdhc: support i.MX8M Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 24/31] imx: lcdif: include i.MX8M Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 25/31] gpio: mxc: add i.MX8M support Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 26/31] net: fec: do not access reserved register for i.MX8M Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 27/31] net: fec: fix build warnings for 64bits support Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 28/31] imx: imx8mq: add dtsi file Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 29/31] power: pmic/regulator allow dm be omitted by SPL Peng Fan
2018-01-16 14:56   ` Simon Glass
2018-01-09 12:11 ` [U-Boot] [PATCH V3 30/31] imx: mx8m: add ddr controller memory map Peng Fan
2018-01-09 12:11 ` [U-Boot] [PATCH V3 31/31] imx: add i.MX8MQ EVK support Peng Fan
2018-01-09 17:28 ` [U-Boot] [PATCH V3 00/31] imx: add i.MX8M support and i.MX8MQ EVK Fabio Estevam
2018-01-09 17:42 ` Diego Dorta
2018-01-10  0:55   ` Peng Fan
2018-01-10  2:09     ` Fabio Estevam
2018-01-10  2:13       ` Fabio Estevam
2018-01-10  2:34         ` Peng Fan [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180110023437.GB22602@shlinux2 \
    --to=van.freenix@gmail.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox