Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Dmitry Baryshkov | d631594 | 2008-06-22 12:01:58 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Toshiba TC6393XB SoC support |
| 4 | * |
| 5 | * Copyright(c) 2005-2006 Chris Humbert |
| 6 | * Copyright(c) 2005 Dirk Opfer |
| 7 | * Copyright(c) 2005 Ian Molton <spyro@f2s.com> |
| 8 | * Copyright(c) 2007 Dmitry Baryshkov |
| 9 | * |
| 10 | * Based on code written by Sharp/Lineo for 2.4 kernels |
| 11 | * Based on locomo.c |
Dmitry Baryshkov | d631594 | 2008-06-22 12:01:58 +0100 | [diff] [blame] | 12 | */ |
| 13 | |
Ian Molton | 25d6cbd8 | 2008-08-10 23:32:07 +0200 | [diff] [blame] | 14 | #ifndef MFD_TC6393XB_H |
| 15 | #define MFD_TC6393XB_H |
Dmitry Baryshkov | d631594 | 2008-06-22 12:01:58 +0100 | [diff] [blame] | 16 | |
Dmitry Baryshkov | 9e78cfe | 2008-10-04 00:50:36 +0200 | [diff] [blame] | 17 | #include <linux/fb.h> |
| 18 | |
Dmitry Baryshkov | d631594 | 2008-06-22 12:01:58 +0100 | [diff] [blame] | 19 | /* Also one should provide the CK3P6MI clock */ |
| 20 | struct tc6393xb_platform_data { |
| 21 | u16 scr_pll2cr; /* PLL2 Control */ |
| 22 | u16 scr_gper; /* GP Enable */ |
Dmitry Baryshkov | d631594 | 2008-06-22 12:01:58 +0100 | [diff] [blame] | 23 | |
| 24 | int (*enable)(struct platform_device *dev); |
| 25 | int (*disable)(struct platform_device *dev); |
| 26 | int (*suspend)(struct platform_device *dev); |
| 27 | int (*resume)(struct platform_device *dev); |
| 28 | |
Ian Molton | 25d6cbd8 | 2008-08-10 23:32:07 +0200 | [diff] [blame] | 29 | int irq_base; /* base for subdevice irqs */ |
Dmitry Baryshkov | d631594 | 2008-06-22 12:01:58 +0100 | [diff] [blame] | 30 | int gpio_base; |
Dmitry Baryshkov | 1c1b6ff | 2008-09-24 23:36:23 +0200 | [diff] [blame] | 31 | int (*setup)(struct platform_device *dev); |
| 32 | void (*teardown)(struct platform_device *dev); |
Dmitry Baryshkov | f024ff1 | 2008-06-27 10:37:57 +0100 | [diff] [blame] | 33 | |
| 34 | struct tmio_nand_data *nand_data; |
Dmitry Baryshkov | 9e78cfe | 2008-10-04 00:50:36 +0200 | [diff] [blame] | 35 | struct tmio_fb_data *fb_data; |
Dmitry Baryshkov | f98a0bd | 2008-09-24 23:46:10 +0200 | [diff] [blame] | 36 | |
| 37 | unsigned resume_restore : 1; /* make special actions |
| 38 | to preserve the state |
| 39 | on suspend/resume */ |
Dmitry Baryshkov | d631594 | 2008-06-22 12:01:58 +0100 | [diff] [blame] | 40 | }; |
| 41 | |
Dmitry Baryshkov | 9e78cfe | 2008-10-04 00:50:36 +0200 | [diff] [blame] | 42 | extern int tc6393xb_lcd_mode(struct platform_device *fb, |
| 43 | const struct fb_videomode *mode); |
| 44 | extern int tc6393xb_lcd_set_power(struct platform_device *fb, bool on); |
| 45 | |
Dmitry Baryshkov | d631594 | 2008-06-22 12:01:58 +0100 | [diff] [blame] | 46 | /* |
| 47 | * Relative to irq_base |
| 48 | */ |
| 49 | #define IRQ_TC6393_NAND 0 |
| 50 | #define IRQ_TC6393_MMC 1 |
Dmitry Baryshkov | 51a5562 | 2008-10-03 20:11:36 +0200 | [diff] [blame] | 51 | #define IRQ_TC6393_OHCI 2 |
Dmitry Baryshkov | 9e78cfe | 2008-10-04 00:50:36 +0200 | [diff] [blame] | 52 | #define IRQ_TC6393_FB 4 |
Dmitry Baryshkov | d631594 | 2008-06-22 12:01:58 +0100 | [diff] [blame] | 53 | |
| 54 | #define TC6393XB_NR_IRQS 8 |
| 55 | |
| 56 | #endif |