blob: 9f14da0771310d75bb95e05322c2a8d026a0363a [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/protocol/platform-bus.h>
#include <ddk/protocol/platform-defs.h>
#include <soc/aml-s905d2/s905d2-hw.h>
#include "astro.h"
static const pbus_mmio_t thermal_mmios[] = {
{
.base = S905D2_TEMP_SENSOR_BASE,
.length = S905D2_TEMP_SENSOR_LENGTH,
},
{
.base = S905D2_GPIO_A0_BASE,
.length = S905D2_GPIO_AO_LENGTH,
},
{
.base = S905D2_HIU_BASE,
.length = S905D2_HIU_LENGTH,
}
};
static const pbus_irq_t thermal_irqs[] = {
{
.irq = S905D2_TS_PLL_IRQ,
.mode = ZX_INTERRUPT_MODE_EDGE_HIGH,
},
};
static pbus_dev_t thermal_dev = {
.name = "aml-thermal",
.vid = PDEV_VID_AMLOGIC,
.pid = PDEV_PID_AMLOGIC_S905D2,
.did = PDEV_DID_AMLOGIC_THERMAL,
.mmios = thermal_mmios,
.mmio_count = countof(thermal_mmios),
.irqs = thermal_irqs,
.irq_count = countof(thermal_irqs),
};
zx_status_t aml_thermal_init(aml_bus_t* bus) {
zx_status_t status = pbus_device_add(&bus->pbus, &thermal_dev, 0);
if (status != ZX_OK) {
zxlogf(ERROR, "aml_thermal_init: pbus_device_add failed: %d\n", status);
return status;
}
return ZX_OK;
}