]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
board: compal: paz00: clean up the board
authorSvyatoslav Ryhel <clamor95@gmail.com>
Sat, 2 Dec 2023 08:08:02 +0000 (10:08 +0200)
committerSvyatoslav Ryhel <clamor95@gmail.com>
Tue, 19 Dec 2023 19:24:30 +0000 (21:24 +0200)
Since implementation of pinctrl driver for T20 Paz00 can switch
to device tree pinmux setup along with remove of board pinmux
and some minor device tree and defconfig tweaks.

Tested-by: Agneli <poczt@protonmail.ch> # Toshiba AC100 T20
Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
arch/arm/dts/tegra20-paz00.dts
board/compal/paz00/Makefile [deleted file]
board/compal/paz00/paz00.c [deleted file]
configs/paz00_defconfig

index 5d8f21059f6731f7c822affa2b462ab0955c04c1..5cf604e86593b44db467e4024aea95d3bf7461e2 100644 (file)
                power-supply = <&vdd_bl_reg>;
                pwms = <&pwm 0 5000000>;
 
-               brightness-levels = <0 16 32 48 64 80 96 112 128 144 160 176 192 208 224 240 255>;
-               default-brightness-level = <10>;
+               brightness-levels = <1 35 70 105 140 175 210 255>;
+               default-brightness-level = <2>;
 
                backlight-boot-off;
        };
diff --git a/board/compal/paz00/Makefile b/board/compal/paz00/Makefile
deleted file mode 100644 (file)
index 22c26ed..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0
-#
-# Copyright (c) 2010-2012, NVIDIA CORPORATION.  All rights reserved.
-#
-# See file CREDITS for list of people who contributed to this
-# project.
-
-obj-y  := paz00.o
diff --git a/board/compal/paz00/paz00.c b/board/compal/paz00/paz00.c
deleted file mode 100644 (file)
index d92eb16..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-/*
- * Copyright (c) 2010-2012, NVIDIA CORPORATION.  All rights reserved.
- *
- * See file CREDITS for list of people who contributed to this
- * project.
- */
-
-#include <common.h>
-#include <log.h>
-#include <asm/io.h>
-#include <asm/arch/tegra.h>
-#include <asm/arch/pinmux.h>
-#include <asm/gpio.h>
-
-#ifdef CONFIG_MMC_SDHCI_TEGRA
-/*
- * Routine: pin_mux_mmc
- * Description: setup the pin muxes/tristate values for the SDMMC(s)
- */
-void pin_mux_mmc(void)
-{
-       /* SDMMC4: config 3, x8 on 2nd set of pins */
-       pinmux_set_func(PMUX_PINGRP_ATB, PMUX_FUNC_SDIO4);
-       pinmux_set_func(PMUX_PINGRP_GMA, PMUX_FUNC_SDIO4);
-       pinmux_set_func(PMUX_PINGRP_GME, PMUX_FUNC_SDIO4);
-
-       pinmux_tristate_disable(PMUX_PINGRP_ATB);
-       pinmux_tristate_disable(PMUX_PINGRP_GMA);
-       pinmux_tristate_disable(PMUX_PINGRP_GME);
-
-       /* SDIO1: SDIO1_CLK, SDIO1_CMD, SDIO1_DAT[3:0] */
-       pinmux_set_func(PMUX_PINGRP_SDIO1, PMUX_FUNC_SDIO1);
-
-       pinmux_tristate_disable(PMUX_PINGRP_SDIO1);
-
-       /* For power GPIO PV1 */
-       pinmux_tristate_disable(PMUX_PINGRP_UAC);
-       /* For CD GPIO PV5 */
-       pinmux_tristate_disable(PMUX_PINGRP_GPV);
-}
-#endif
-
-#ifdef CONFIG_VIDEO
-/* this is a weak define that we are overriding */
-void pin_mux_display(void)
-{
-       debug("init display pinmux\n");
-
-       /* EN_VDD_PANEL GPIO A4 */
-       pinmux_tristate_disable(PMUX_PINGRP_DAP2);
-}
-#endif
index 9f3893dd60f298737b7c2c07b7aaca3b04f0184b..c698493ad27e8ce1d8340bff2c96c18c7d87ea1a 100644 (file)
@@ -46,6 +46,9 @@ CONFIG_SYS_NS16550=y
 CONFIG_USB=y
 CONFIG_USB_EHCI_HCD=y
 CONFIG_USB_EHCI_TEGRA=y
+CONFIG_USB_ULPI_VIEWPORT=y
+CONFIG_USB_ULPI=y
+CONFIG_USB_KEYBOARD=y
 CONFIG_USB_HOST_ETHER=y
 CONFIG_USB_ETHER_ASIX=y
 CONFIG_VIDEO=y