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 | |
Timur Tabi | 7653aaa | 2011-07-09 15:38:14 -0500 | [diff] [blame] | 24 | /* The different ports that the DIU can be connected to */ |
| 25 | enum fsl_diu_monitor_port { |
| 26 | FSL_DIU_PORT_DVI, /* DVI */ |
| 27 | FSL_DIU_PORT_LVDS, /* Single-link LVDS */ |
| 28 | FSL_DIU_PORT_DLVDS /* Dual-link LVDS */ |
| 29 | }; |
| 30 | |
York Sun | 6f90a8bd | 2008-04-28 02:15:36 -0700 | [diff] [blame] | 31 | struct platform_diu_data_ops { |
Timur Tabi | 7653aaa | 2011-07-09 15:38:14 -0500 | [diff] [blame] | 32 | u32 (*get_pixel_format)(enum fsl_diu_monitor_port port, |
| 33 | unsigned int bpp); |
| 34 | void (*set_gamma_table)(enum fsl_diu_monitor_port port, |
| 35 | char *gamma_table_base); |
| 36 | void (*set_monitor_port)(enum fsl_diu_monitor_port port); |
| 37 | void (*set_pixel_clock)(unsigned int pixclock); |
| 38 | enum fsl_diu_monitor_port (*valid_monitor_port) |
| 39 | (enum fsl_diu_monitor_port port); |
| 40 | void (*release_bootmem)(void); |
York Sun | 6f90a8bd | 2008-04-28 02:15:36 -0700 | [diff] [blame] | 41 | }; |
| 42 | |
| 43 | extern struct platform_diu_data_ops diu_ops; |
York Sun | 6f90a8bd | 2008-04-28 02:15:36 -0700 | [diff] [blame] | 44 | |
Timur Tabi | d173ea6 | 2011-05-19 08:54:29 -0500 | [diff] [blame] | 45 | void fsl_hv_restart(char *cmd); |
| 46 | void fsl_hv_halt(void); |
| 47 | |
Kumar Gala | eed3200 | 2006-01-13 11:19:13 -0600 | [diff] [blame] | 48 | #endif |
| 49 | #endif |