blob: 72ac22e13bcb8ffd5bad718c07d1319bbf2b0092 [file] [log] [blame]
// Copyright 2019 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 <fuchsia/hardware/platform/bus/c/banjo.h>
#include <ddk/debug.h>
#include <ddk/device.h>
#include <ddk/platform-defs.h>
#include "nelson.h"
namespace nelson {
static const pbus_dev_t cpu_dev = []() {
pbus_dev_t dev = {};
dev.name = "nelson-cpu";
dev.vid = PDEV_VID_AMLOGIC;
dev.pid = PDEV_PID_AMLOGIC_S905D3;
dev.did = PDEV_DID_AMLOGIC_CPU;
return dev;
}();
zx_status_t Nelson::CpuInit() {
zx_status_t st = pbus_.DeviceAdd(&cpu_dev);
if (st != ZX_OK) {
zxlogf(ERROR, "%s: DeviceAdd failed: %d", __func__, st);
return st;
}
return ZX_OK;
}
} // namespace nelson