Path: blob/master/arch/powerpc/platforms/83xx/asp834x.c
26481 views
// SPDX-License-Identifier: GPL-2.0-or-later1/*2* arch/powerpc/platforms/83xx/asp834x.c3*4* Analogue & Micro ASP8347 board specific routines5* clone of mpc834x_itx6*7* Copyright 2008 Codehermit8*9* Maintainer: Bryan O'Donoghue <[email protected]>10*/1112#include <linux/pci.h>13#include <linux/of_platform.h>1415#include <asm/time.h>16#include <asm/ipic.h>17#include <asm/udbg.h>1819#include "mpc83xx.h"2021/* ************************************************************************22*23* Setup the architecture24*25*/26static void __init asp834x_setup_arch(void)27{28mpc83xx_setup_arch();29mpc834x_usb_cfg();30}3132machine_device_initcall(asp834x, mpc83xx_declare_of_platform_devices);3334define_machine(asp834x) {35.name = "ASP8347E",36.compatible = "analogue-and-micro,asp8347e",37.setup_arch = asp834x_setup_arch,38.discover_phbs = mpc83xx_setup_pci,39.init_IRQ = mpc83xx_ipic_init_IRQ,40.get_irq = ipic_get_irq,41.restart = mpc83xx_restart,42.time_init = mpc83xx_time_init,43.progress = udbg_progress,44};454647