All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marcel Ziswiler <marcel@ziswiler.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 21/23] tegra: Convert CONFIG_PWM_TEGRA to Kconfig
Date: Sun, 17 Jan 2016 01:50:59 +0100	[thread overview]
Message-ID: <1452991859.3246.24.camel@ziswiler.com> (raw)
In-Reply-To: <1452796115-21076-22-git-send-email-sjg@chromium.org>

On Thu, 2016-01-14 at 11:28 -0700, Simon Glass wrote:
> Move this option to Kconfig and clean up the header files. Adjust the
> only
> user (the LCD driver) to work with the new driver.
> 
> Signed-off-by: Simon Glass <sjg@chromium.org>
> ---
> 
> ?configs/colibri_t20_defconfig | 8 +++++---
> ?configs/harmony_defconfig?????| 1 +
> ?configs/medcom-wide_defconfig | 1 +
> ?configs/nyan-big_defconfig????| 1 +
> ?configs/paz00_defconfig???????| 1 +
> ?configs/seaboard_defconfig????| 1 +
> ?configs/tec_defconfig?????????| 1 +
> ?configs/ventana_defconfig?????| 1 +
> ?drivers/pwm/Kconfig???????????| 8 ++++++++
> ?include/configs/colibri_t20.h | 1 -
> ?include/configs/harmony.h?????| 1 -
> ?include/configs/medcom-wide.h | 1 -
> ?include/configs/nyan-big.h????| 1 -
> ?include/configs/paz00.h???????| 1 -
> ?include/configs/seaboard.h????| 1 -
> ?include/configs/tec.h?????????| 1 -
> ?include/configs/ventana.h?????| 1 -
> ?17 files changed, 20 insertions(+), 11 deletions(-)
> 
> diff --git a/configs/colibri_t20_defconfig
> b/configs/colibri_t20_defconfig
> index 84e5bc5..49687cf 100644
> --- a/configs/colibri_t20_defconfig
> +++ b/configs/colibri_t20_defconfig
> @@ -2,18 +2,20 @@ CONFIG_ARM=y
> ?CONFIG_TEGRA=y
> ?CONFIG_SPL_DM=y
> ?CONFIG_TEGRA20=y
> -CONFIG_TARGET_COLIBRI_T20=y
> -CONFIG_DEFAULT_DEVICE_TREE="tegra20-colibri"
> -CONFIG_SYS_PROMPT="Colibri T20 # "
> +CONFIG_TARGET_MEDCOM_WIDE=y
> +CONFIG_DEFAULT_DEVICE_TREE="tegra20-medcom-wide"
> +CONFIG_SYS_PROMPT="Tegra20 (Medcom-Wide) # "

Hm, I don't think you do want to change our Colibri T20 to become a
Medcom Wide (;-p). Leaving that part off makes it at least boot again.

> ?# CONFIG_CMD_IMI is not set
> ?# CONFIG_CMD_IMLS is not set
> ?# CONFIG_CMD_FLASH is not set
> ?# CONFIG_CMD_FPGA is not set
> ?CONFIG_CMD_GPIO=y
> +# CONFIG_CMD_SETEXPR is not set
> ?# CONFIG_CMD_NFS is not set
> ?CONFIG_DM_PMIC=y
> ?CONFIG_DM_REGULATOR=y
> ?CONFIG_DM_PWM=y
> +CONFIG_PWM_TEGRA=y
> ?CONFIG_SYS_NS16550=y
> ?CONFIG_USB=y
> ?CONFIG_DM_USB=y

<snip>

  reply	other threads:[~2016-01-17  0:50 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-14 18:28 [U-Boot] [PATCH 00/23] dm: tegra: Convert tegra20 and tegra124 video drivers to driver model Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 01/23] tegra: keyboard: Fix the init order Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 02/23] dm: video: Flush the cache after a puts() Simon Glass
2016-01-18 22:29   ` Tom Warren
2016-01-19  2:02     ` Simon Glass
2016-01-19 16:53       ` Tom Warren
2016-01-20  4:35         ` Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 03/23] tegra: mmc: Fix comments in the MMC driver init Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 04/23] tegra: dts: Sync up the tegra124 device tree files with Linux Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 05/23] tegra: dts: Sync up nyan-big " Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 06/23] tegra: gpio: Show the GPIO value for outputs Simon Glass
2016-01-14 20:40   ` Joe Hershberger
2016-01-14 18:28 ` [U-Boot] [PATCH 07/23] tegra: pwm: Add a driver for the tegra PWM Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 08/23] tegra: lcd: Merge tegra124-lcd.c into display.c Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 09/23] tegra: Allow driver model to be used for the PWM Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 10/23] tegra: Allow CONFIG_DM_VIDEO to be used as well as CONFIG_LCD Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 11/23] tegra: nyan-big: Move the LCD driver to driver model Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 12/23] tegra: video: Rename CONFIG_VIDEO_TEGRA to CONFIG_VIDEO_TEGRA20 Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 13/23] tegra: dts: Sync tegra20.dtsi with Linux v4.4 Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 14/23] tegra: video: Merge the display driver into one file Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 15/23] tegra: video: Move the check for CONFIG_OF_CONTROL to Kconfig Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 16/23] tegra: video: Merge the two config structures together Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 17/23] tegra: video: Convert tegra20 LCD driver to driver model Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 18/23] tegra: video: Remove the static variables Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 19/23] tegra: video: Move LCD enums into the driver Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 20/23] tegra: video: Move all fdt-decoding into a single function Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 21/23] tegra: Convert CONFIG_PWM_TEGRA to Kconfig Simon Glass
2016-01-17  0:50   ` Marcel Ziswiler [this message]
2016-01-14 18:28 ` [U-Boot] [PATCH 22/23] tegra: video: Move LCD driver to use the DM PWM driver Simon Glass
2016-01-14 18:28 ` [U-Boot] [PATCH 23/23] tegra: video: Clean up the old LCD/PWM driver code Simon Glass
2016-01-16  2:36 ` [U-Boot] [PATCH 00/23] dm: tegra: Convert tegra20 and tegra124 video drivers to driver model Marcel Ziswiler
2016-01-16 17:14   ` Simon Glass
2016-01-17  0:50     ` Marcel Ziswiler
2016-01-21  3:07       ` Simon Glass

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=1452991859.3246.24.camel@ziswiler.com \
    --to=marcel@ziswiler.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.