1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * This file contains the definitions for the T7L66XB 4 * 5 * (C) Copyright 2005 Ian Molton <spyro@f2s.com> 6 */ 7 #ifndef MFD_T7L66XB_H 8 #define MFD_T7L66XB_H 9 10 #include <linux/mfd/core.h> 11 #include <linux/mfd/tmio.h> 12 13 struct t7l66xb_platform_data { 14 int (*enable)(struct platform_device *dev); 15 int (*suspend)(struct platform_device *dev); 16 int (*resume)(struct platform_device *dev); 17 18 int irq_base; /* The base for subdevice irqs */ 19 20 struct tmio_nand_data *nand_data; 21 }; 22 23 24 #define IRQ_T7L66XB_MMC (1) 25 #define IRQ_T7L66XB_NAND (3) 26 27 #define T7L66XB_NR_IRQS 8 28 29 #endif 30