blob: a6683945b1f129ac0cbc5378edbede23458e21f2 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <ddk/debug.h>
#include <ddk/device.h>
#include <ddk/platform-defs.h>
#include <ddk/protocol/platform/bus.h>
#include <ddk/metadata.h>
#include <ddk/metadata/display.h>
#include <soc/aml-s905d2/s905d2-gpio.h>
#include <soc/aml-s905d2/s905d2-hw.h>
#include <limits.h>
#include "astro.h"
static const pbus_mmio_t display_mmios[] = {
{
// VBUS/VPU
.base = S905D2_VPU_BASE,
.length = S905D2_VPU_LENGTH,
},
{
// TOP DSI Host Controller (Amlogic Specific)
.base = S905D2_MIPI_TOP_DSI_BASE,
.length = S905D2_MIPI_TOP_DSI_LENGTH,
},
{
// DSI PHY
.base = S905D2_DSI_PHY_BASE,
.length = S905D2_DSI_PHY_LENGTH,
},
{
// HHI
.base = S905D2_HIU_BASE,
.length = S905D2_HIU_LENGTH,
},
{
// AOBUS
.base = S905D2_AOBUS_BASE,
.length = S905D2_AOBUS_LENGTH,
},
{
// CBUS
.base = S905D2_CBUS_BASE,
.length = S905D2_CBUS_LENGTH,
},
};
static const pbus_irq_t display_irqs[] = {
{
.irq = S905D2_VIU1_VSYNC_IRQ,
.mode = ZX_INTERRUPT_MODE_EDGE_HIGH,
},
{
.irq = S905D2_RDMA_DONE,
.mode = ZX_INTERRUPT_MODE_EDGE_HIGH,
},
};
static const pbus_gpio_t display_gpios[] = {
{
// Backlight Enable
.gpio = S905D2_GPIOA(10),
},
{
// LCD Reset
.gpio = S905D2_GPIOH(6),
},
{
// Panel detection
.gpio = S905D2_GPIOH(5),
},
};
static const display_driver_t display_driver_info[] = {
{
.vid = PDEV_VID_AMLOGIC,
.pid = PDEV_PID_AMLOGIC_S905D2,
.did = PDEV_DID_AMLOGIC_DISPLAY,
},
};
static const pbus_metadata_t display_metadata[] = {
{
.type = DEVICE_METADATA_PRIVATE,
.data_buffer = &display_driver_info,
.data_size = sizeof(display_driver_t),
},
};
static const pbus_bti_t display_btis[] = {
{
.iommu_index = 0,
.bti_id = BTI_DISPLAY,
},
};
static const pbus_i2c_channel_t display_i2c_channels[] = {
{
.bus_id = ASTRO_I2C_3,
.address = I2C_BACKLIGHT_ADDR,
},
};
static const pbus_mmio_t dsi_mmios[] = {
{
// DSI Host Controller
.base = S905D2_MIPI_DSI_BASE,
.length = S905D2_MIPI_DSI_LENGTH,
},
};
static pbus_dev_t display_dev[] = {
{
.name = "display",
.mmio_list = display_mmios,
.mmio_count = countof(display_mmios),
.irq_list = display_irqs,
.irq_count = countof(display_irqs),
.gpio_list = display_gpios,
.gpio_count = countof(display_gpios),
.i2c_channel_list = display_i2c_channels,
.i2c_channel_count = countof(display_i2c_channels),
.bti_list = display_btis,
.bti_count = countof(display_btis),
},
};
static pbus_dev_t dsi_dev = {
.name = "dw-dsi",
.vid = PDEV_VID_GENERIC,
.pid = PDEV_PID_GENERIC,
.did = PDEV_DID_DW_DSI,
.metadata_list = display_metadata,
.metadata_count = countof(display_metadata),
.mmio_list = dsi_mmios,
.mmio_count =countof(dsi_mmios),
.child_list = display_dev,
.child_count = countof(display_dev),
};
zx_status_t aml_display_init(aml_bus_t* bus) {
zx_status_t status = pbus_device_add(&bus->pbus, &dsi_dev);
if (status != ZX_OK) {
zxlogf(ERROR, "%s: Could not add display dev: %d\n", __FUNCTION__, status);
return status;
}
return ZX_OK;
}