diff options
| author | Tony Lindgren <tony@atomide.com> | 2016-06-09 00:44:00 -0700 |
|---|---|---|
| committer | Tony Lindgren <tony@atomide.com> | 2016-06-09 00:44:00 -0700 |
| commit | 68ada6bd11cb2efc98c685c8ce4f338cb4af940b (patch) | |
| tree | f479f77594c288ee8fbcfc6fdf601b8c3341db01 /include/linux | |
| parent | 1a695a905c18548062509178b98bc91e67510864 (diff) | |
| parent | f8e0db9722e069f48f58e191948e85f6254879db (diff) | |
| download | cachepc-linux-68ada6bd11cb2efc98c685c8ce4f338cb4af940b.tar.gz cachepc-linux-68ada6bd11cb2efc98c685c8ce4f338cb4af940b.zip | |
Merge branch 'peter/for-4.8_omapdss_part1' of https://github.com/omap-audio/linux-audio into omap-for-v4.8/soc
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/platform_data/omapdss.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/include/linux/platform_data/omapdss.h b/include/linux/platform_data/omapdss.h new file mode 100644 index 000000000000..dbb875abc44a --- /dev/null +++ b/include/linux/platform_data/omapdss.h @@ -0,0 +1,42 @@ +/* + * Copyright (C) 2016 Texas Instruments, Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + */ + +#ifndef __OMAPDSS_PDATA_H +#define __OMAPDSS_PDATA_H + +enum omapdss_version { + OMAPDSS_VER_UNKNOWN = 0, + OMAPDSS_VER_OMAP24xx, + OMAPDSS_VER_OMAP34xx_ES1, /* OMAP3430 ES1.0, 2.0 */ + OMAPDSS_VER_OMAP34xx_ES3, /* OMAP3430 ES3.0+ */ + OMAPDSS_VER_OMAP3630, + OMAPDSS_VER_AM35xx, + OMAPDSS_VER_OMAP4430_ES1, /* OMAP4430 ES1.0 */ + OMAPDSS_VER_OMAP4430_ES2, /* OMAP4430 ES2.0, 2.1, 2.2 */ + OMAPDSS_VER_OMAP4, /* All other OMAP4s */ + OMAPDSS_VER_OMAP5, + OMAPDSS_VER_AM43xx, + OMAPDSS_VER_DRA7xx, +}; + +struct omap_dss_device; + +/* Board specific data */ +struct omap_dss_board_info { + int num_devices; + struct omap_dss_device **devices; + struct omap_dss_device *default_device; + const char *default_display_name; + int (*dsi_enable_pads)(int dsi_id, unsigned int lane_mask); + void (*dsi_disable_pads)(int dsi_id, unsigned int lane_mask); + int (*set_min_bus_tput)(struct device *dev, unsigned long r); + enum omapdss_version version; +}; + +#endif /* __OMAPDSS_PDATA_H */ |
