// SPDX-License-Identifier: GPL-2.0-only1// Copyright (C) 2013-2014 Broadcom Corporation23#include <linux/init.h>4#include <linux/irqchip.h>56#include <asm/mach-types.h>7#include <asm/mach/arch.h>89/*10* Storage for debug-macro.S's state.11*12* This must be in .data not .bss so that it gets initialized each time the13* kernel is loaded. The data is declared here rather than debug-macro.S so14* that multiple inclusions of debug-macro.S point at the same data.15*/16u32 brcmstb_uart_config[3] = {17/* Debug UART initialization required */181,19/* Debug UART physical address */200,21/* Debug UART virtual address */220,23};2425static const char *const brcmstb_match[] __initconst = {26"brcm,bcm7445",27"brcm,brcmstb",28NULL29};3031DT_MACHINE_START(BRCMSTB, "Broadcom STB (Flattened Device Tree)")32.dt_compat = brcmstb_match,33MACHINE_END343536