mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 18:11:56 +00:00
791ffcdebf
It's time to remove all ATAG support from ux500 and rely solely on Device Tree booting. This patch is part of that endeavour. Signed-off-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
29 lines
716 B
C
29 lines
716 B
C
/*
|
|
* Copyright (C) ST-Ericsson SA 2010
|
|
*
|
|
* Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
|
|
* License terms: GNU General Public License (GPL) version 2
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/io.h>
|
|
#include <linux/amba/bus.h>
|
|
#include <linux/amba/pl022.h>
|
|
#include <linux/mfd/dbx500-prcmu.h>
|
|
|
|
#include "setup.h"
|
|
#include "irqs.h"
|
|
|
|
#include "db8500-regs.h"
|
|
#include "devices-db8500.h"
|
|
|
|
struct prcmu_pdata db8500_prcmu_pdata = {
|
|
.ab_platdata = &ab8500_platdata,
|
|
.ab_irq = IRQ_DB8500_AB8500,
|
|
.irq_base = IRQ_PRCMU_BASE,
|
|
.version_offset = DB8500_PRCMU_FW_VERSION_OFFSET,
|
|
.legacy_offset = DB8500_PRCMU_LEGACY_OFFSET,
|
|
};
|