blob: 69632c1b07bd8a31c8bab677fae48996511ddfdd [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Ian Molton1f192012008-07-15 15:09:43 +01002/*
3 * This file contains the definitions for the T7L66XB
4 *
5 * (C) Copyright 2005 Ian Molton <spyro@f2s.com>
Ian Molton1f192012008-07-15 15:09:43 +01006 */
7#ifndef MFD_T7L66XB_H
8#define MFD_T7L66XB_H
9
10#include <linux/mfd/core.h>
11#include <linux/mfd/tmio.h>
12
13struct t7l66xb_platform_data {
Ian Molton1f192012008-07-15 15:09:43 +010014 int (*enable)(struct platform_device *dev);
15 int (*disable)(struct platform_device *dev);
16 int (*suspend)(struct platform_device *dev);
17 int (*resume)(struct platform_device *dev);
18
19 int irq_base; /* The base for subdevice irqs */
20
21 struct tmio_nand_data *nand_data;
22};
23
24
25#define IRQ_T7L66XB_MMC (1)
26#define IRQ_T7L66XB_NAND (3)
27
28#define T7L66XB_NR_IRQS 8
29
30#endif