2 * Copyright (C) 2016 Texas Instruments, Inc.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
10 #ifndef __OMAPDSS_PDATA_H
11 #define __OMAPDSS_PDATA_H
13 enum omapdss_version
{
14 OMAPDSS_VER_UNKNOWN
= 0,
16 OMAPDSS_VER_OMAP34xx_ES1
, /* OMAP3430 ES1.0, 2.0 */
17 OMAPDSS_VER_OMAP34xx_ES3
, /* OMAP3430 ES3.0+ */
20 OMAPDSS_VER_OMAP4430_ES1
, /* OMAP4430 ES1.0 */
21 OMAPDSS_VER_OMAP4430_ES2
, /* OMAP4430 ES2.0, 2.1, 2.2 */
22 OMAPDSS_VER_OMAP4
, /* All other OMAP4s */
28 /* Board specific data */
29 struct omap_dss_board_info
{
30 int (*dsi_enable_pads
)(int dsi_id
, unsigned int lane_mask
);
31 void (*dsi_disable_pads
)(int dsi_id
, unsigned int lane_mask
);
32 int (*set_min_bus_tput
)(struct device
*dev
, unsigned long r
);
33 enum omapdss_version version
;
36 #endif /* __OMAPDSS_PDATA_H */