All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tom Warren <tomcwarren3959@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] Pull request, u-boot-tegra/master
Date: Thu, 18 Feb 2016 12:53:42 -0700	[thread overview]
Message-ID: <CACih+8VmAwvNG8f-QoJ8+56qR+XM5oUqBQS6EprUpVJdvM-NGQ@mail.gmail.com> (raw)

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All tegra builds are OK (32-bit and 64-bit).

The following changes since commit 727a25b2418031e1b94ba603e0eb61657024091b:

  Prepare v2016.03-rc2 (2016-02-15 21:44:30 +0000)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 5589bc2770a7d7fe346f5972596f26d1ddf57bba:

  ARM: tegra: enable USB device mode port on Dalmore (2016-02-18 10:02:19
-0700)

----------------------------------------------------------------
Simon Glass (24):
      tegra: keyboard: Fix the init order
      dm: video: Flush the cache after a puts()
      tegra: mmc: Fix comments in the MMC driver init
      tegra: dts: Sync up the tegra124 device tree files with Linux
      tegra: dts: Sync up nyan-big files with Linux
      tegra: gpio: Show the GPIO value for outputs
      tegra: pwm: Add a driver for the tegra PWM
      tegra: lcd: Merge tegra124-lcd.c into display.c
      tegra: Allow driver model to be used for the PWM
      tegra: Allow CONFIG_DM_VIDEO to be used as well as CONFIG_LCD
      tegra: nyan-big: Move the LCD driver to driver model
      tegra: video: Rename CONFIG_VIDEO_TEGRA to CONFIG_VIDEO_TEGRA20
      tegra: dts: Sync tegra20.dtsi with Linux v4.4
      tegra: video: Merge the display driver into one file
      tegra: video: Move the check for CONFIG_OF_CONTROL to Kconfig
      tegra: video: Merge the two config structures together
      tegra: video: Convert tegra20 LCD driver to driver model
      tegra: video: Remove the static variables
      tegra: video: Move LCD enums into the driver
      tegra: video: Move all fdt-decoding into a single function
      tegra: Convert CONFIG_PWM_TEGRA to Kconfig
      tegra: video: Move LCD driver to use the DM PWM driver
      tegra: video: Clean up the old LCD/PWM driver code
      video: tegra: Correct a Kconfig warning with VIDCONSOLE_AS_LCD

Stephen Warren (2):
      ARM: tegra: don't set CONFIG_USB_MAX_CONTROLLER_COUNT
      ARM: tegra: enable USB device mode port on Dalmore

 arch/arm/dts/tegra114-dalmore.dts               |    9 +-
 arch/arm/dts/tegra124-jetson-tk1.dts            |   13 +
 arch/arm/dts/tegra124-nyan-big.dts              | 1676
++++++++++++++++++-----
 arch/arm/dts/tegra124-nyan.dtsi                 |  718 ++++++++++
 arch/arm/dts/tegra124-venice2.dts               |   14 +
 arch/arm/dts/tegra124.dtsi                      |  693 ++++++++--
 arch/arm/dts/tegra20-colibri.dts                |   22 +-
 arch/arm/dts/tegra20-harmony.dts                |   44 +-
 arch/arm/dts/tegra20-medcom-wide.dts            |   26 +-
 arch/arm/dts/tegra20-paz00.dts                  |   43 +-
 arch/arm/dts/tegra20-plutux.dts                 |    8 -
 arch/arm/dts/tegra20-seaboard.dts               |   36 +-
 arch/arm/dts/tegra20-tamonten.dtsi              |   15 +-
 arch/arm/dts/tegra20-tec.dts                    |   10 +-
 arch/arm/dts/tegra20-trimslice.dts              |   34 +-
 arch/arm/dts/tegra20-ventana.dts                |   43 +-
 arch/arm/dts/tegra20-whistler.dts               |   35 +-
 arch/arm/dts/tegra20.dtsi                       |  541 ++++++--
 arch/arm/include/asm/arch-tegra/dc.h            |    5 -
 arch/arm/include/asm/arch-tegra/pwm.h           |   30 -
 arch/arm/include/asm/arch-tegra20/display.h     |  108 --
 arch/arm/mach-tegra/Kconfig                     |    3 +-
 arch/arm/mach-tegra/Makefile                    |    1 -
 arch/arm/mach-tegra/board2.c                    |   24 +-
 arch/arm/mach-tegra/pwm.c                       |   89 --
 arch/arm/mach-tegra/tegra20/Makefile            |    2 -
 arch/arm/mach-tegra/tegra20/display.c           |  378 -----
 board/compal/paz00/paz00.c                      |    2 +-
 board/toradex/colibri_t20/colibri_t20.c         |    2 +-
 configs/colibri_t20_defconfig                   |    6 +
 configs/harmony_defconfig                       |    6 +
 configs/medcom-wide_defconfig                   |    6 +
 configs/nyan-big_defconfig                      |   10 +
 configs/paz00_defconfig                         |    6 +
 configs/seaboard_defconfig                      |    6 +
 configs/tec_defconfig                           |    6 +
 configs/ventana_defconfig                       |    6 +
 drivers/gpio/tegra_gpio.c                       |    5 +-
 drivers/input/tegra-kbc.c                       |    2 +-
 drivers/mmc/tegra_mmc.c                         |    4 +-
 drivers/pwm/Kconfig                             |    9 +
 drivers/pwm/Makefile                            |    3 +
 drivers/pwm/tegra_pwm.c                         |   85 ++
 drivers/video/Kconfig                           |   10 +
 drivers/video/Makefile                          |    2 +-
 drivers/video/simple_panel.c                    |    1 +
 drivers/video/tegra.c                           |  658 +++++++--
 drivers/video/tegra124/Makefile                 |    1 -
 drivers/video/tegra124/display.c                |  184 ++-
 drivers/video/tegra124/dp.c                     |   53 +-
 drivers/video/tegra124/sor.c                    |  162 ++-
 drivers/video/tegra124/sor.h                    |   45 +-
 drivers/video/tegra124/tegra124-lcd.c           |   95 --
 drivers/video/vidconsole-uclass.c               |    1 +
 include/configs/apalis_t30.h                    |    1 -
 include/configs/beaver.h                        |    1 -
 include/configs/colibri_t20.h                   |    5 -
 include/configs/colibri_t30.h                   |    1 -
 include/configs/dalmore.h                       |    1 +
 include/configs/e2220-1170.h                    |    1 -
 include/configs/harmony.h                       |    5 -
 include/configs/jetson-tk1.h                    |    1 -
 include/configs/medcom-wide.h                   |    4 -
 include/configs/nyan-big.h                      |    4 -
 include/configs/p2371-0000.h                    |    1 -
 include/configs/p2371-2180.h                    |    1 -
 include/configs/p2571.h                         |    1 -
 include/configs/paz00.h                         |    4 -
 include/configs/seaboard.h                      |    5 -
 include/configs/tec.h                           |    4 -
 include/configs/tegra-common-post.h             |   10 +-
 include/configs/trimslice.h                     |    1 -
 include/configs/venice2.h                       |    1 -
 include/configs/ventana.h                       |    4 -
 include/dt-bindings/clock/tegra124-car-common.h |  345 +++++
 include/dt-bindings/clock/tegra124-car.h        |  341 +----
 include/dt-bindings/memory/tegra124-mc.h        |   31 +
 include/dt-bindings/reset/tegra124-car.h        |   12 +
 include/dt-bindings/thermal/tegra124-soctherm.h |   13 +
 include/fdtdec.h                                |    1 -
 lib/fdtdec.c                                    |    1 -
 81 files changed, 4606 insertions(+), 2190 deletions(-)
 create mode 100644 arch/arm/dts/tegra124-nyan.dtsi
 delete mode 100644 arch/arm/mach-tegra/pwm.c
 create mode 100644 drivers/pwm/tegra_pwm.c
 delete mode 100644 drivers/video/tegra124/tegra124-lcd.c
 create mode 100644 include/dt-bindings/clock/tegra124-car-common.h
 create mode 100644 include/dt-bindings/memory/tegra124-mc.h
 create mode 100644 include/dt-bindings/reset/tegra124-car.h
 create mode 100644 include/dt-bindings/thermal/tegra124-soctherm.h

             reply	other threads:[~2016-02-18 19:53 UTC|newest]

Thread overview: 102+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-18 19:53 Tom Warren [this message]
2016-02-20  0:54 ` [U-Boot] Pull request, u-boot-tegra/master Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2019-08-09 17:21 Tom Warren
2019-08-11  1:13 ` Tom Rini
2019-06-05 20:50 Tom Warren
2019-06-07  1:31 ` Tom Rini
2019-06-07 15:28   ` Tom Warren
2019-06-07 15:40     ` Tom Rini
2019-06-07 17:17       ` Tom Warren
2019-06-07 18:30         ` Peter Robinson
2019-06-11  1:31 ` Tom Rini
2019-05-28 16:01 Tom Warren
2019-05-29 17:18 ` Tom Rini
2019-02-20 16:34 Tom Warren
2019-02-21 23:10 ` Tom Rini
2019-02-19 22:44 Tom Warren
2018-08-21 17:27 Tom Warren
2018-08-23 13:59 ` Tom Rini
2018-07-26 21:08 Tom Warren
2018-07-27 17:08 ` Tom Rini
2018-07-06 20:11 Tom Warren
2018-07-06 22:04 ` Tom Rini
2018-05-11 19:19 Tom Warren
2018-05-12  1:49 ` Tom Rini
2018-01-12 17:37 Tom Warren
2018-01-15 13:53 ` Tom Rini
2018-01-16 17:47   ` Stephen Warren
2018-01-16 18:14     ` Tom Rini
2017-08-16 15:30 Tom Warren
2017-08-17  1:17 ` Tom Rini
2017-06-20 19:04 Tom Warren
2017-06-21 23:05 ` Tom Rini
2017-06-12 23:32 Tom Warren
2017-06-15 13:01 ` Tom Rini
2017-04-04 17:56 Tom Warren
2017-04-05  1:13 ` Tom Rini
2017-01-04 17:05 Tom Warren
2017-01-05 13:28 ` Tom Rini
2016-11-08 15:34 Tom Warren
2016-11-08 20:53 ` Tom Rini
2016-10-10 20:55 Tom Warren
2016-10-13  0:48 ` Tom Rini
2016-09-27 16:16 Tom Warren
2016-09-27 21:34 ` Tom Rini
2016-09-01 17:32 Tom Warren
2016-09-02 14:53 ` Tom Rini
2016-08-25 23:42 Tom Warren
2016-08-26 14:52 ` Tom Rini
2016-08-15 19:38 Tom Warren
2016-08-16  1:09 ` Tom Rini
2016-08-05 17:26 Tom Warren
2016-08-06  0:57 ` Tom Rini
2016-07-21 20:17 Tom Warren
2016-07-23  0:10 ` Tom Rini
2016-07-23  0:17   ` Stephen Warren
2016-07-23  0:22     ` Tom Rini
2016-07-23  0:31       ` Stephen Warren
2016-07-23  0:42         ` Tom Rini
2016-07-06 17:32 Tom Warren
2016-07-08  2:51 ` Tom Rini
2016-06-03 16:00 Tom Warren
2016-06-06 11:15 ` Tom Rini
2016-05-04 21:36 Tom Warren
2016-05-04 22:12 ` Tom Rini
2016-03-29 17:24 Tom Warren
2016-03-29 22:06 ` Tom Rini
2016-01-28 17:46 Tom Warren
2016-01-28 23:18 ` Tom Rini
2015-11-12 20:53 Tom Warren
2015-11-13  1:26 ` Tom Rini
2015-10-02 18:15 Tom Warren
2015-10-03  0:51 ` Tom Rini
2015-09-16 23:27 Tom Warren
2015-09-17  1:06 ` Tom Rini
2015-08-13 20:26 Tom Warren
2015-08-13 21:55 ` Tom Rini
2015-08-06 20:39 Tom Warren
2015-08-11 17:44 ` Tom Warren
2015-08-11 18:04   ` Tom Rini
2015-08-11 20:54     ` Tom Warren
2015-07-28 15:31 [U-Boot] Pull request: u-boot-tegra/master Tom Warren
2015-07-28 15:51 ` Stephen Warren
2015-07-28 17:23   ` Tom Warren
2015-06-09 17:06 Tom Warren
2015-06-10 14:37 ` Tom Rini
2015-05-12 21:49 Tom Warren
2015-05-13  1:45 ` Masahiro Yamada
2015-05-13 16:38   ` Tom Warren
2015-05-13 19:23     ` Tom Warren
2015-05-14 19:14       ` Tom Rini
2012-03-08 20:27 [U-Boot] pull " Tom Warren
2012-01-19  0:01 Tom Warren
2012-01-21 11:07 ` Albert ARIBAUD
2012-01-23 15:55   ` Tom Warren
2011-12-07 23:35 [U-Boot] Pull " Tom Warren
2011-12-08  7:22 ` Albert ARIBAUD
2011-12-08 16:45   ` Stephen Warren
2011-12-09 15:36     ` Albert ARIBAUD
2011-12-09 17:10       ` Stephen Warren
2011-12-09 17:22         ` Albert ARIBAUD
2011-12-09 17:37           ` Stephen Warren
2011-12-09 17:53             ` Albert ARIBAUD

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=CACih+8VmAwvNG8f-QoJ8+56qR+XM5oUqBQS6EprUpVJdvM-NGQ@mail.gmail.com \
    --to=tomcwarren3959@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.