| Kumar Gala | eed3200 | 2006-01-13 11:19:13 -0600 | [diff] [blame] | 1 | #ifndef __PPC_FSL_SOC_H | 
 | 2 | #define __PPC_FSL_SOC_H | 
 | 3 | #ifdef __KERNEL__ | 
 | 4 |  | 
| Scott Wood | 3d574ab | 2006-09-21 13:11:52 -0500 | [diff] [blame] | 5 | #include <asm/mmu.h> | 
 | 6 |  | 
| Anton Vorontsov | 364fdbc | 2009-03-31 15:24:36 -0700 | [diff] [blame] | 7 | struct spi_device; | 
 | 8 |  | 
| Kumar Gala | eed3200 | 2006-01-13 11:19:13 -0600 | [diff] [blame] | 9 | extern phys_addr_t get_immrbase(void); | 
| Anton Vorontsov | a5dae76 | 2008-12-05 23:10:26 +0300 | [diff] [blame] | 10 | #if defined(CONFIG_CPM2) || defined(CONFIG_QUICC_ENGINE) || defined(CONFIG_8xx) | 
| Vitaly Bordug | fba4366 | 2006-09-21 17:26:34 +0400 | [diff] [blame] | 11 | extern u32 get_brgfreq(void); | 
 | 12 | extern u32 get_baudrate(void); | 
| Anton Vorontsov | a5dae76 | 2008-12-05 23:10:26 +0300 | [diff] [blame] | 13 | #else | 
 | 14 | static inline u32 get_brgfreq(void) { return -1; } | 
 | 15 | static inline u32 get_baudrate(void) { return -1; } | 
 | 16 | #endif | 
| Scott Wood | 3866409 | 2008-04-15 13:52:34 -0500 | [diff] [blame] | 17 | extern u32 fsl_get_sys_freq(void); | 
| Kumar Gala | eed3200 | 2006-01-13 11:19:13 -0600 | [diff] [blame] | 18 |  | 
| Anton Vorontsov | 26f6cb9 | 2007-08-23 15:35:56 +0400 | [diff] [blame] | 19 | struct spi_board_info; | 
| Scott Wood | d49747b | 2007-10-09 12:37:13 -0500 | [diff] [blame] | 20 | struct device_node; | 
| Anton Vorontsov | 26f6cb9 | 2007-08-23 15:35:56 +0400 | [diff] [blame] | 21 |  | 
| Kumar Gala | e1c1575 | 2007-10-04 01:04:57 -0500 | [diff] [blame] | 22 | extern void fsl_rstcr_restart(char *cmd); | 
| York Sun | 6f90a8bd | 2008-04-28 02:15:36 -0700 | [diff] [blame] | 23 |  | 
 | 24 | #if defined(CONFIG_FB_FSL_DIU) || defined(CONFIG_FB_FSL_DIU_MODULE) | 
| Timur Tabi | 7653aaa | 2011-07-09 15:38:14 -0500 | [diff] [blame] | 25 |  | 
 | 26 | /* The different ports that the DIU can be connected to */ | 
 | 27 | enum fsl_diu_monitor_port { | 
 | 28 | 	FSL_DIU_PORT_DVI,	/* DVI */ | 
 | 29 | 	FSL_DIU_PORT_LVDS,	/* Single-link LVDS */ | 
 | 30 | 	FSL_DIU_PORT_DLVDS	/* Dual-link LVDS */ | 
 | 31 | }; | 
 | 32 |  | 
| York Sun | 6f90a8bd | 2008-04-28 02:15:36 -0700 | [diff] [blame] | 33 | struct platform_diu_data_ops { | 
| Timur Tabi | 7653aaa | 2011-07-09 15:38:14 -0500 | [diff] [blame] | 34 | 	u32 (*get_pixel_format)(enum fsl_diu_monitor_port port, | 
 | 35 | 		unsigned int bpp); | 
 | 36 | 	void (*set_gamma_table)(enum fsl_diu_monitor_port port, | 
 | 37 | 		char *gamma_table_base); | 
 | 38 | 	void (*set_monitor_port)(enum fsl_diu_monitor_port port); | 
 | 39 | 	void (*set_pixel_clock)(unsigned int pixclock); | 
 | 40 | 	enum fsl_diu_monitor_port (*valid_monitor_port) | 
 | 41 | 		(enum fsl_diu_monitor_port port); | 
 | 42 | 	void (*release_bootmem)(void); | 
| York Sun | 6f90a8bd | 2008-04-28 02:15:36 -0700 | [diff] [blame] | 43 | }; | 
 | 44 |  | 
 | 45 | extern struct platform_diu_data_ops diu_ops; | 
| York Sun | 6f90a8bd | 2008-04-28 02:15:36 -0700 | [diff] [blame] | 46 | #endif | 
 | 47 |  | 
| Timur Tabi | d173ea6 | 2011-05-19 08:54:29 -0500 | [diff] [blame] | 48 | void fsl_hv_restart(char *cmd); | 
 | 49 | void fsl_hv_halt(void); | 
 | 50 |  | 
| Kumar Gala | eed3200 | 2006-01-13 11:19:13 -0600 | [diff] [blame] | 51 | #endif | 
 | 52 | #endif |