ryu: display: Move display api to mainboard
Display configuration is board specific. The change here is preparing
for supporting other than dsi interface.
BUG=chrome-os-partner:34336
BRANCH=none
TEST=build ryu and test dev/rec mode, also build rush ok
Change-Id: Ied39d5d539d2be4983ab70976bffbe51fccba276
Signed-off-by: Stefan Reinauer <reinauer@chromium.org>
Original-Commit-Id: 36be6b2e35
Original-Change-Id: I494a04f7d6c0dbad2d472f4c2cd0aabfb23b8c97
Original-Signed-off-by: Jimmy Zhang <jimmzhang@nvidia.com>
Original-Reviewed-on: https://chromium-review.googlesource.com/234271
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/9584
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
d4dff62175
commit
f055aa0632
3 changed files with 10 additions and 1 deletions
|
|
@ -32,6 +32,8 @@
|
|||
#include <soc/funitcfg.h>
|
||||
#include <soc/nvidia/tegra/i2c.h>
|
||||
#include <soc/padconfig.h>
|
||||
#include <soc/nvidia/tegra/dc.h>
|
||||
#include <soc/display.h>
|
||||
#include <vendorcode/google/chromeos/chromeos.h>
|
||||
#if IS_ENABLED(CONFIG_CHROMEOS)
|
||||
#include <vboot_struct.h>
|
||||
|
|
@ -280,6 +282,11 @@ static void mainboard_init(device_t dev)
|
|||
configure_display_blocks();
|
||||
}
|
||||
|
||||
void display_startup(device_t dev)
|
||||
{
|
||||
dsi_display_startup(dev);
|
||||
}
|
||||
|
||||
static void mainboard_enable(device_t dev)
|
||||
{
|
||||
dev->ops->init = &mainboard_init;
|
||||
|
|
|
|||
|
|
@ -875,7 +875,7 @@ static int dsi_enable(struct soc_nvidia_tegra132_config *config)
|
|||
return 0;
|
||||
}
|
||||
|
||||
void display_startup(device_t dev)
|
||||
void dsi_display_startup(device_t dev)
|
||||
{
|
||||
struct soc_nvidia_tegra132_config *config = dev->chip_info;
|
||||
struct display_controller *disp_ctrl =
|
||||
|
|
|
|||
|
|
@ -38,6 +38,8 @@
|
|||
struct soc_nvidia_tegra132_config;
|
||||
struct display_controller;
|
||||
|
||||
void dsi_display_startup(device_t dev);
|
||||
|
||||
int tegra_dc_init(struct display_controller *disp_ctrl);
|
||||
int update_display_mode(struct display_controller *disp_ctrl,
|
||||
struct soc_nvidia_tegra132_config *config);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue