]> git.sur5r.net Git - u-boot/commitdiff
tegra: video: Move LCD driver to use the DM PWM driver
authorSimon Glass <sjg@chromium.org>
Sat, 30 Jan 2016 23:38:01 +0000 (16:38 -0700)
committerTom Warren <twarren@nvidia.com>
Tue, 16 Feb 2016 16:17:53 +0000 (09:17 -0700)
Use the driver-model PWM driver in preference to the old code.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Anatolij Gustschin <agust@denx.de>
Signed-off-by: Tom Warren <twarren@nvidia.com>
arch/arm/dts/tegra20-colibri.dts
arch/arm/dts/tegra20-harmony.dts
arch/arm/dts/tegra20-medcom-wide.dts
arch/arm/dts/tegra20-paz00.dts
arch/arm/dts/tegra20-seaboard.dts
arch/arm/dts/tegra20-tec.dts
arch/arm/dts/tegra20-ventana.dts
arch/arm/mach-tegra/Kconfig
drivers/pwm/Kconfig
drivers/video/tegra.c

index 2bed516f47ee4ab5488fcaa5f91ee5dc2abb67c3..2cf24d3ee7711031196609608a449afafb077d37 100644 (file)
                };
        };
 
+       pwm: pwm@7000a000 {
+               status = "okay";
+       };
+
        lcd_panel: panel {
                clock = <25175000>;
                xres = <640>;
index 3eb9aa503ed84280c4b18884201f32973dd1dfce..623eb90a8a005ec560878b0df0f8b6fb6c4f1aae 100644 (file)
                };
        };
 
+       pwm: pwm@7000a000 {
+               status = "okay";
+       };
+
        lcd_panel: panel {
                clock = <42430000>;
                xres = <1024>;
index a4886bf7156889522314b9861a6a2c3deb55b2e9..3d37257189e0acfc19b89562ecd8858d4096271d 100644 (file)
                status = "okay";
        };
 
+       pwm: pwm@7000a000 {
+               status = "okay";
+       };
+
        lcd_panel: panel {
                clock = <61715000>;
                xres = <1366>;
index f5edff13496d3c6f2b7ecf56135bf97fbf0f09dd..5c7e80558da355426033ebbf4bfd6bd60b0d6a71 100644 (file)
                };
        };
 
+       pwm: pwm@7000a000 {
+               status = "okay";
+       };
+
        lcd_panel: panel {
                /* PAZ00 has 1024x600 */
                clock = <54030000>;
index 15bd12142b92fdf3579bcfce4b3c225ea243b60f..eada59073efcfd8d41f70e1010a30496ac04b5e0 100644 (file)
                };
        };
 
+       pwm: pwm@7000a000 {
+               status = "okay";
+       };
+
        lcd_panel: panel {
                /* Seaboard has 1366x768 */
                clock = <70600000>;
index b16f10d410ff6b19e3d7369faf149e4f8fd437d6..4f68077fafa1f493a37eb40f256ae29563ce53b8 100644 (file)
                status = "disabled";
        };
 
+       pwm: pwm@7000a000 {
+               status = "okay";
+       };
+
        lcd_panel: panel {
                clock = <33260000>;
                xres = <800>;
index bbbe8b7a89874580687218b55a5500a03a54a33b..851e0ed8d9a4b08f546bf1d5b088e2c772546668 100644 (file)
                };
        };
 
+       pwm: pwm@7000a000 {
+               status = "okay";
+       };
+
        lcd_panel: panel {
                clock = <72072000>;
                xres = <1366>;
index 385724394751d0debad40287d6cc70c85554a638..3540edab9adbe06b25643cc88700525c8254d587 100644 (file)
@@ -9,6 +9,7 @@ config TEGRA_COMMON
        select DM_KEYBOARD
        select DM_PCI
        select DM_PCI_COMPAT
+       select DM_PWM
        select DM_SERIAL
        select DM_SPI
        select DM_SPI_FLASH
index e5880ac84f680a5b5ca690d94762c8d7129abfcb..6f0d61e7ab2cc7b315d32c88d3ab14a9e0208fb2 100644 (file)
@@ -20,6 +20,7 @@ config PWM_ROCKCHIP
 
 config PWM_TEGRA
        bool "Enable support for the Tegra PWM"
+       depends on DM_PWM
        help
          This PWM is found on Tegra 20 and other Nvidia SoCs. It supports
          four channels with a programmable period and duty cycle. Only a
index ccd9c0824e580e2c98455f760f54c2d4632189dd..7fd10e6af35e9b80f624c6f6aec04ffb906e1e1f 100644 (file)
@@ -6,6 +6,7 @@
 #include <common.h>
 #include <dm.h>
 #include <fdtdec.h>
+#include <pwm.h>
 #include <video.h>
 #include <asm/system.h>
 #include <asm/gpio.h>
@@ -68,6 +69,7 @@ struct tegra_lcd_priv {
        unsigned pixel_clock;           /* Pixel clock in Hz */
        uint horiz_timing[FDT_LCD_TIMING_COUNT];        /* Horizontal timing */
        uint vert_timing[FDT_LCD_TIMING_COUNT];         /* Vertical timing */
+       struct udevice *pwm;
        int pwm_channel;                /* PWM channel to use for backlight */
        enum lcd_cache_t cache_type;
 
@@ -400,7 +402,8 @@ static int handle_stage(const void *blob, struct tegra_lcd_priv *priv)
                pinmux_set_func(PMUX_PINGRP_GPU, PMUX_FUNC_PWM);
                pinmux_tristate_disable(PMUX_PINGRP_GPU);
 
-               pwm_enable(priv->pwm_channel, 32768, 0xdf, 1);
+               pwm_set_config(priv->pwm, priv->pwm_channel, 0xdf, 0xff);
+               pwm_set_enable(priv->pwm, priv->pwm_channel, true);
                break;
        case STAGE_BACKLIGHT_EN:
                if (dm_gpio_is_valid(&priv->backlight_en))
@@ -504,12 +507,14 @@ static int tegra_lcd_probe(struct udevice *dev)
 static int tegra_lcd_ofdata_to_platdata(struct udevice *dev)
 {
        struct tegra_lcd_priv *priv = dev_get_priv(dev);
+       struct fdtdec_phandle_args args;
        const void *blob = gd->fdt_blob;
        int node = dev->of_offset;
        int front, back, ref;
        int panel_node;
        int rgb;
        int bpp, bit;
+       int ret;
 
        priv->disp = (struct disp_ctlr *)dev_get_addr(dev);
        if (!priv->disp) {
@@ -575,12 +580,19 @@ static int tegra_lcd_ofdata_to_platdata(struct udevice *dev)
                return -EINVAL;
        }
 
-       priv->pwm_channel = pwm_request(blob, panel_node, "nvidia,pwm");
-       if (priv->pwm_channel < 0) {
-               debug("%s: Unable to request PWM channel\n", __func__);
+       if (fdtdec_parse_phandle_with_args(blob, panel_node, "nvidia,pwm",
+                                          "#pwm-cells", 0, 0, &args)) {
+               debug("%s: Unable to decode PWM\n", __func__);
                return -EINVAL;
        }
 
+       ret = uclass_get_device_by_of_offset(UCLASS_PWM, args.node, &priv->pwm);
+       if (ret) {
+               debug("%s: Unable to find PWM\n", __func__);
+               return -EINVAL;
+       }
+       priv->pwm_channel = args.args[0];
+
        priv->cache_type = fdtdec_get_int(blob, panel_node, "nvidia,cache-type",
                                          FDT_LCD_CACHE_WRITE_BACK_FLUSH);