mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 05:34:28 +00:00
a355ece8e6
These files have a lot of code in common with their counterparts in coreboot, especially in their earlier revisions: U-Boot | coreboot --------------------------------------|-------------------------------------------- drivers/video/rockchip/: | src/soc/rockchip/: - rk_edp.c (GPL-2.0+) | - common/edp.c (GPL-2.0-only) " | - rk3288/display.c (GPL-2.0-only) " | - rk3399/display.c (GPL-2.0-only) - rk_hdmi.h (GPL-2.0+) | (none) - rk_hdmi.c (GPL-2.0+) | - rk3288/hdmi.c (GPL-2.0-or-later) - rk3288_hdmi.c (GPL-2.0+) | - rk3288/hdmi.c (GPL-2.0-or-later) - rk3399_hdmi.c (GPL-2.0+) | (none) - rk_mipi.h (GPL-2.0+) | (none) - rk_mipi.c (GPL-2.0+) | - rk3399/mipi.c (GPL-2.0-only) - rk3288_mipi.c (GPL-2.0+) | - rk3399/mipi.c (GPL-2.0-only) - rk3399_mipi.c (GPL-2.0+) | - rk3399/mipi.c (GPL-2.0-only) - rk_lvds.c (GPL-2.0+) | (none) - rk_vop.h (GPL-2.0+) | (none) - rk_vop.c (GPL-2.0+) | - common/vop.c (GPL-2.0-only) - rk3288_vop.c (GPL-2.0+) | - common/vop.c (GPL-2.0-only) - rk3399_vop.c (GPL-2.0+) | (none) | arch/arm/include/asm/arch-rockchip/: | src/soc/rockchip/*/include/soc/*: - edp_rk3288.h (GPL-2.0+) | - common/.../edp.h (GPL-2.0-only) " | - rk3288/.../display.h (GPL-2.0-only) " | - rk3399/.../display.h (GPL-2.0-only) - vop_rk3288.h (GPL-2.0+) | - common/.../vop.h (GPL-2.0-only) Restrict the licenses to match coreboot's so that changes from coreboot can be imported to U-Boot as necessary. HDMI files are already 2.0+ there and rk_lvds.c has no counterpart, so keep them as is. Cc: Simon Glass <sjg@chromium.org> Cc: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Cc: Eric Gao <eric.gao@rock-chips.com> Cc: Jacob Chen <jacob-chen@iotwrt.com> Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Kever Yang<kever.yang@rock-chips.com>
66 lines
1.6 KiB
C
66 lines
1.6 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2017 Theobroma Systems Design und Consulting GmbH
|
|
*/
|
|
|
|
#ifndef __RK_VOP_H__
|
|
#define __RK_VOP_H__
|
|
|
|
#include <asm/arch-rockchip/vop_rk3288.h>
|
|
|
|
struct rk_vop_priv {
|
|
void *grf;
|
|
void *regs;
|
|
};
|
|
|
|
enum vop_features {
|
|
VOP_FEATURE_OUTPUT_10BIT = (1 << 0),
|
|
};
|
|
|
|
struct rkvop_driverdata {
|
|
/* configuration */
|
|
u32 features;
|
|
/* block-specific setters/getters */
|
|
void (*set_pin_polarity)(struct udevice *, enum vop_modes, u32);
|
|
};
|
|
|
|
/**
|
|
* rk_vop_probe() - common probe implementation
|
|
*
|
|
* Performs the rk_display_init on each port-subnode until finding a
|
|
* working port (or returning an error if none of the ports could be
|
|
* successfully initialised).
|
|
*
|
|
* @dev: device
|
|
* @return 0 if OK, -ve if something went wrong
|
|
*/
|
|
int rk_vop_probe(struct udevice *dev);
|
|
|
|
/**
|
|
* rk_vop_bind() - common bind implementation
|
|
*
|
|
* Sets the plat->size field to the amount of memory to be reserved for
|
|
* the framebuffer: this is always
|
|
* (32 BPP) x VIDEO_ROCKCHIP_MAX_XRES x VIDEO_ROCKCHIP_MAX_YRES
|
|
*
|
|
* @dev: device
|
|
* @return 0 (always OK)
|
|
*/
|
|
int rk_vop_bind(struct udevice *dev);
|
|
|
|
/**
|
|
* rk_vop_probe_regulators() - probe (autoset + enable) regulators
|
|
*
|
|
* Probes a list of regulators by performing autoset and enable
|
|
* operations on them. The list of regulators is an array of string
|
|
* pointers and any individual regulator-probe may fail without
|
|
* counting as an error.
|
|
*
|
|
* @dev: device
|
|
* @names: array of string-pointers to regulator names to probe
|
|
* @cnt: number of elements in the 'names' array
|
|
*/
|
|
void rk_vop_probe_regulators(struct udevice *dev,
|
|
const char * const *names, int cnt);
|
|
|
|
#endif
|