| 
									
										
										
										
											2011-02-11 12:28:17 -08:00
										 |  |  | /* Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved.
 | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License version 2 and | 
					
						
							|  |  |  |  * only version 2 as published by the Free Software Foundation. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  * along with this program; if not, write to the Free Software | 
					
						
							|  |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | 
					
						
							|  |  |  |  * 02110-1301, USA. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/platform_device.h>
 | 
					
						
							|  |  |  | #include <linux/bootmem.h>
 | 
					
						
							| 
									
										
										
										
											2011-12-06 11:17:34 +01:00
										 |  |  | #include <linux/module.h>
 | 
					
						
							| 
									
										
										
										
											2011-02-11 12:28:17 -08:00
										 |  |  | #include <mach/irqs.h>
 | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | #include <mach/iommu.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource msm_iommu_jpegd_resources[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-02-11 12:28:17 -08:00
										 |  |  | 		.start = 0x07300000, | 
					
						
							|  |  |  | 		.end   = 0x07300000 + SZ_1M - 1, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 		.name  = "physbase", | 
					
						
							|  |  |  | 		.flags = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "nonsecure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_JPEGD_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_JPEGD_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "secure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_JPEGD_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_JPEGD_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource msm_iommu_vpe_resources[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-02-11 12:28:17 -08:00
										 |  |  | 		.start = 0x07400000, | 
					
						
							|  |  |  | 		.end   = 0x07400000 + SZ_1M - 1, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 		.name  = "physbase", | 
					
						
							|  |  |  | 		.flags = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "nonsecure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_VPE_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_VPE_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "secure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_VPE_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_VPE_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource msm_iommu_mdp0_resources[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-02-11 12:28:17 -08:00
										 |  |  | 		.start = 0x07500000, | 
					
						
							|  |  |  | 		.end   = 0x07500000 + SZ_1M - 1, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 		.name  = "physbase", | 
					
						
							|  |  |  | 		.flags = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "nonsecure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_MDP0_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_MDP0_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "secure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_MDP0_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_MDP0_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource msm_iommu_mdp1_resources[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-02-11 12:28:17 -08:00
										 |  |  | 		.start = 0x07600000, | 
					
						
							|  |  |  | 		.end   = 0x07600000 + SZ_1M - 1, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 		.name  = "physbase", | 
					
						
							|  |  |  | 		.flags = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "nonsecure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_MDP1_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_MDP1_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "secure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_MDP1_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_MDP1_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource msm_iommu_rot_resources[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-02-11 12:28:17 -08:00
										 |  |  | 		.start = 0x07700000, | 
					
						
							|  |  |  | 		.end   = 0x07700000 + SZ_1M - 1, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 		.name  = "physbase", | 
					
						
							|  |  |  | 		.flags = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "nonsecure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_ROT_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_ROT_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "secure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_ROT_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_ROT_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource msm_iommu_ijpeg_resources[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-02-11 12:28:17 -08:00
										 |  |  | 		.start = 0x07800000, | 
					
						
							|  |  |  | 		.end   = 0x07800000 + SZ_1M - 1, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 		.name  = "physbase", | 
					
						
							|  |  |  | 		.flags = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "nonsecure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_IJPEG_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_IJPEG_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "secure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_IJPEG_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_IJPEG_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource msm_iommu_vfe_resources[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-02-11 12:28:17 -08:00
										 |  |  | 		.start = 0x07900000, | 
					
						
							|  |  |  | 		.end   = 0x07900000 + SZ_1M - 1, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 		.name  = "physbase", | 
					
						
							|  |  |  | 		.flags = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "nonsecure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_VFE_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_VFE_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "secure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_VFE_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_VFE_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource msm_iommu_vcodec_a_resources[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-02-11 12:28:17 -08:00
										 |  |  | 		.start = 0x07A00000, | 
					
						
							|  |  |  | 		.end   = 0x07A00000 + SZ_1M - 1, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 		.name  = "physbase", | 
					
						
							|  |  |  | 		.flags = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "nonsecure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_VCODEC_A_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_VCODEC_A_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "secure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_VCODEC_A_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_VCODEC_A_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource msm_iommu_vcodec_b_resources[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-02-11 12:28:17 -08:00
										 |  |  | 		.start = 0x07B00000, | 
					
						
							|  |  |  | 		.end   = 0x07B00000 + SZ_1M - 1, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 		.name  = "physbase", | 
					
						
							|  |  |  | 		.flags = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "nonsecure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_VCODEC_B_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_VCODEC_B_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "secure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_VCODEC_B_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_VCODEC_B_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource msm_iommu_gfx3d_resources[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-02-11 12:28:17 -08:00
										 |  |  | 		.start = 0x07C00000, | 
					
						
							|  |  |  | 		.end   = 0x07C00000 + SZ_1M - 1, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 		.name  = "physbase", | 
					
						
							|  |  |  | 		.flags = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "nonsecure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_GFX3D_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_GFX3D_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "secure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_GFX3D_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_GFX3D_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource msm_iommu_gfx2d0_resources[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-02-11 12:28:17 -08:00
										 |  |  | 		.start = 0x07D00000, | 
					
						
							|  |  |  | 		.end   = 0x07D00000 + SZ_1M - 1, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 		.name  = "physbase", | 
					
						
							|  |  |  | 		.flags = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "nonsecure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_GFX2D0_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_GFX2D0_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "secure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_GFX2D0_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_GFX2D0_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:52 -08:00
										 |  |  | static struct resource msm_iommu_gfx2d1_resources[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-02-11 12:28:17 -08:00
										 |  |  | 		.start = 0x07E00000, | 
					
						
							|  |  |  | 		.end   = 0x07E00000 + SZ_1M - 1, | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:52 -08:00
										 |  |  | 		.name  = "physbase", | 
					
						
							|  |  |  | 		.flags = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "nonsecure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_GFX2D1_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_GFX2D1_CB_SC_NON_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name = "secure_irq", | 
					
						
							|  |  |  | 		.start = SMMU_GFX2D1_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.end   = SMMU_GFX2D1_CB_SC_SECURE_IRQ, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | static struct platform_device msm_root_iommu_dev = { | 
					
						
							|  |  |  | 	.name = "msm_iommu", | 
					
						
							|  |  |  | 	.id = -1, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct msm_iommu_dev jpegd_iommu = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "jpegd", | 
					
						
							| 
									
										
										
										
											2011-02-24 18:00:42 -08:00
										 |  |  | 	.ncb = 2, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct msm_iommu_dev vpe_iommu = { | 
					
						
							| 
									
										
										
										
											2011-02-24 18:00:42 -08:00
										 |  |  | 	.name = "vpe", | 
					
						
							|  |  |  | 	.ncb = 2, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct msm_iommu_dev mdp0_iommu = { | 
					
						
							| 
									
										
										
										
											2011-02-24 18:00:42 -08:00
										 |  |  | 	.name = "mdp0", | 
					
						
							|  |  |  | 	.ncb = 2, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct msm_iommu_dev mdp1_iommu = { | 
					
						
							| 
									
										
										
										
											2011-02-24 18:00:42 -08:00
										 |  |  | 	.name = "mdp1", | 
					
						
							|  |  |  | 	.ncb = 2, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct msm_iommu_dev rot_iommu = { | 
					
						
							| 
									
										
										
										
											2011-02-24 18:00:42 -08:00
										 |  |  | 	.name = "rot", | 
					
						
							|  |  |  | 	.ncb = 2, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct msm_iommu_dev ijpeg_iommu = { | 
					
						
							| 
									
										
										
										
											2011-02-24 18:00:42 -08:00
										 |  |  | 	.name = "ijpeg", | 
					
						
							|  |  |  | 	.ncb = 2, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct msm_iommu_dev vfe_iommu = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "vfe", | 
					
						
							| 
									
										
										
										
											2011-02-24 18:00:42 -08:00
										 |  |  | 	.ncb = 2, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct msm_iommu_dev vcodec_a_iommu = { | 
					
						
							| 
									
										
										
										
											2011-02-24 18:00:42 -08:00
										 |  |  | 	.name = "vcodec_a", | 
					
						
							|  |  |  | 	.ncb = 2, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct msm_iommu_dev vcodec_b_iommu = { | 
					
						
							| 
									
										
										
										
											2011-02-24 18:00:42 -08:00
										 |  |  | 	.name = "vcodec_b", | 
					
						
							|  |  |  | 	.ncb = 2, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct msm_iommu_dev gfx3d_iommu = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "gfx3d", | 
					
						
							| 
									
										
										
										
											2011-02-24 18:00:42 -08:00
										 |  |  | 	.ncb = 3, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct msm_iommu_dev gfx2d0_iommu = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "gfx2d0", | 
					
						
							| 
									
										
										
										
											2011-02-24 18:00:42 -08:00
										 |  |  | 	.ncb = 2, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:52 -08:00
										 |  |  | static struct msm_iommu_dev gfx2d1_iommu = { | 
					
						
							|  |  |  | 	.name = "gfx2d1", | 
					
						
							| 
									
										
										
										
											2011-02-24 18:00:42 -08:00
										 |  |  | 	.ncb = 2, | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:52 -08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct platform_device msm_device_iommu_jpegd = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "msm_iommu", | 
					
						
							|  |  |  | 	.id = 0, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.parent = &msm_root_iommu_dev.dev, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources = ARRAY_SIZE(msm_iommu_jpegd_resources), | 
					
						
							|  |  |  | 	.resource = msm_iommu_jpegd_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct platform_device msm_device_iommu_vpe = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "msm_iommu", | 
					
						
							|  |  |  | 	.id = 1, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.parent = &msm_root_iommu_dev.dev, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources = ARRAY_SIZE(msm_iommu_vpe_resources), | 
					
						
							|  |  |  | 	.resource = msm_iommu_vpe_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct platform_device msm_device_iommu_mdp0 = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "msm_iommu", | 
					
						
							|  |  |  | 	.id = 2, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.parent = &msm_root_iommu_dev.dev, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources = ARRAY_SIZE(msm_iommu_mdp0_resources), | 
					
						
							|  |  |  | 	.resource = msm_iommu_mdp0_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct platform_device msm_device_iommu_mdp1 = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "msm_iommu", | 
					
						
							|  |  |  | 	.id = 3, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.parent = &msm_root_iommu_dev.dev, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources = ARRAY_SIZE(msm_iommu_mdp1_resources), | 
					
						
							|  |  |  | 	.resource = msm_iommu_mdp1_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct platform_device msm_device_iommu_rot = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "msm_iommu", | 
					
						
							|  |  |  | 	.id = 4, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.parent = &msm_root_iommu_dev.dev, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources = ARRAY_SIZE(msm_iommu_rot_resources), | 
					
						
							|  |  |  | 	.resource = msm_iommu_rot_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct platform_device msm_device_iommu_ijpeg = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "msm_iommu", | 
					
						
							|  |  |  | 	.id = 5, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.parent = &msm_root_iommu_dev.dev, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources = ARRAY_SIZE(msm_iommu_ijpeg_resources), | 
					
						
							|  |  |  | 	.resource = msm_iommu_ijpeg_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct platform_device msm_device_iommu_vfe = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "msm_iommu", | 
					
						
							|  |  |  | 	.id = 6, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.parent = &msm_root_iommu_dev.dev, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources = ARRAY_SIZE(msm_iommu_vfe_resources), | 
					
						
							|  |  |  | 	.resource = msm_iommu_vfe_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct platform_device msm_device_iommu_vcodec_a = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "msm_iommu", | 
					
						
							|  |  |  | 	.id = 7, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.parent = &msm_root_iommu_dev.dev, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources = ARRAY_SIZE(msm_iommu_vcodec_a_resources), | 
					
						
							|  |  |  | 	.resource = msm_iommu_vcodec_a_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct platform_device msm_device_iommu_vcodec_b = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "msm_iommu", | 
					
						
							|  |  |  | 	.id = 8, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.parent = &msm_root_iommu_dev.dev, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources = ARRAY_SIZE(msm_iommu_vcodec_b_resources), | 
					
						
							|  |  |  | 	.resource = msm_iommu_vcodec_b_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct platform_device msm_device_iommu_gfx3d = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "msm_iommu", | 
					
						
							|  |  |  | 	.id = 9, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.parent = &msm_root_iommu_dev.dev, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources = ARRAY_SIZE(msm_iommu_gfx3d_resources), | 
					
						
							|  |  |  | 	.resource = msm_iommu_gfx3d_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | static struct platform_device msm_device_iommu_gfx2d0 = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "msm_iommu", | 
					
						
							|  |  |  | 	.id = 10, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.parent = &msm_root_iommu_dev.dev, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources = ARRAY_SIZE(msm_iommu_gfx2d0_resources), | 
					
						
							|  |  |  | 	.resource = msm_iommu_gfx2d0_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:52 -08:00
										 |  |  | struct platform_device msm_device_iommu_gfx2d1 = { | 
					
						
							|  |  |  | 	.name = "msm_iommu", | 
					
						
							|  |  |  | 	.id = 11, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.parent = &msm_root_iommu_dev.dev, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources = ARRAY_SIZE(msm_iommu_gfx2d1_resources), | 
					
						
							|  |  |  | 	.resource = msm_iommu_gfx2d1_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | static struct msm_iommu_ctx_dev jpegd_src_ctx = { | 
					
						
							|  |  |  | 	.name = "jpegd_src", | 
					
						
							|  |  |  | 	.num = 0, | 
					
						
							|  |  |  | 	.mids = {0, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_ctx_dev jpegd_dst_ctx = { | 
					
						
							|  |  |  | 	.name = "jpegd_dst", | 
					
						
							|  |  |  | 	.num = 1, | 
					
						
							|  |  |  | 	.mids = {1, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_ctx_dev vpe_src_ctx = { | 
					
						
							|  |  |  | 	.name = "vpe_src", | 
					
						
							|  |  |  | 	.num = 0, | 
					
						
							|  |  |  | 	.mids = {0, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_ctx_dev vpe_dst_ctx = { | 
					
						
							|  |  |  | 	.name = "vpe_dst", | 
					
						
							|  |  |  | 	.num = 1, | 
					
						
							|  |  |  | 	.mids = {1, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_ctx_dev mdp_vg1_ctx = { | 
					
						
							|  |  |  | 	.name = "mdp_vg1", | 
					
						
							|  |  |  | 	.num = 0, | 
					
						
							|  |  |  | 	.mids = {0, 2, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_ctx_dev mdp_rgb1_ctx = { | 
					
						
							|  |  |  | 	.name = "mdp_rgb1", | 
					
						
							|  |  |  | 	.num = 1, | 
					
						
							|  |  |  | 	.mids = {1, 3, 4, 5, 6, 7, 8, 9, 10, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_ctx_dev mdp_vg2_ctx = { | 
					
						
							|  |  |  | 	.name = "mdp_vg2", | 
					
						
							|  |  |  | 	.num = 0, | 
					
						
							|  |  |  | 	.mids = {0, 2, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_ctx_dev mdp_rgb2_ctx = { | 
					
						
							|  |  |  | 	.name = "mdp_rgb2", | 
					
						
							|  |  |  | 	.num = 1, | 
					
						
							|  |  |  | 	.mids = {1, 3, 4, 5, 6, 7, 8, 9, 10, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_ctx_dev rot_src_ctx = { | 
					
						
							|  |  |  | 	.name = "rot_src", | 
					
						
							|  |  |  | 	.num = 0, | 
					
						
							|  |  |  | 	.mids = {0, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_ctx_dev rot_dst_ctx = { | 
					
						
							|  |  |  | 	.name = "rot_dst", | 
					
						
							|  |  |  | 	.num = 1, | 
					
						
							|  |  |  | 	.mids = {1, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_ctx_dev ijpeg_src_ctx = { | 
					
						
							|  |  |  | 	.name = "ijpeg_src", | 
					
						
							|  |  |  | 	.num = 0, | 
					
						
							|  |  |  | 	.mids = {0, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_ctx_dev ijpeg_dst_ctx = { | 
					
						
							|  |  |  | 	.name = "ijpeg_dst", | 
					
						
							|  |  |  | 	.num = 1, | 
					
						
							|  |  |  | 	.mids = {1, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_ctx_dev vfe_imgwr_ctx = { | 
					
						
							|  |  |  | 	.name = "vfe_imgwr", | 
					
						
							|  |  |  | 	.num = 0, | 
					
						
							|  |  |  | 	.mids = {2, 3, 4, 5, 6, 7, 8, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_ctx_dev vfe_misc_ctx = { | 
					
						
							|  |  |  | 	.name = "vfe_misc", | 
					
						
							|  |  |  | 	.num = 1, | 
					
						
							|  |  |  | 	.mids = {0, 1, 9, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_ctx_dev vcodec_a_stream_ctx = { | 
					
						
							|  |  |  | 	.name = "vcodec_a_stream", | 
					
						
							|  |  |  | 	.num = 0, | 
					
						
							|  |  |  | 	.mids = {2, 5, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_ctx_dev vcodec_a_mm1_ctx = { | 
					
						
							|  |  |  | 	.name = "vcodec_a_mm1", | 
					
						
							|  |  |  | 	.num = 1, | 
					
						
							|  |  |  | 	.mids = {0, 1, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_ctx_dev vcodec_b_mm2_ctx = { | 
					
						
							|  |  |  | 	.name = "vcodec_b_mm2", | 
					
						
							|  |  |  | 	.num = 0, | 
					
						
							|  |  |  | 	.mids = {0, 1, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:50 -08:00
										 |  |  | static struct msm_iommu_ctx_dev gfx3d_user_ctx = { | 
					
						
							|  |  |  | 	.name = "gfx3d_user", | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.num = 0, | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:50 -08:00
										 |  |  | 	.mids = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, -1} | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:50 -08:00
										 |  |  | static struct msm_iommu_ctx_dev gfx3d_priv_ctx = { | 
					
						
							|  |  |  | 	.name = "gfx3d_priv", | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.num = 1, | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:50 -08:00
										 |  |  | 	.mids = {16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, | 
					
						
							|  |  |  | 		 31, -1} | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:51 -08:00
										 |  |  | static struct msm_iommu_ctx_dev gfx2d0_2d0_ctx = { | 
					
						
							|  |  |  | 	.name = "gfx2d0_2d0", | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.num = 0, | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:51 -08:00
										 |  |  | 	.mids = {0, 1, 2, 3, 4, 5, 6, 7, -1} | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:52 -08:00
										 |  |  | static struct msm_iommu_ctx_dev gfx2d1_2d1_ctx = { | 
					
						
							|  |  |  | 	.name = "gfx2d1_2d1", | 
					
						
							|  |  |  | 	.num = 0, | 
					
						
							|  |  |  | 	.mids = {0, 1, 2, 3, 4, 5, 6, 7, -1} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | static struct platform_device msm_device_jpegd_src_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 0, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_jpegd.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device msm_device_jpegd_dst_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 1, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_jpegd.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device msm_device_vpe_src_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 2, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_vpe.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device msm_device_vpe_dst_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 3, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_vpe.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device msm_device_mdp_vg1_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 4, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_mdp0.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device msm_device_mdp_rgb1_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 5, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_mdp0.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device msm_device_mdp_vg2_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 6, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_mdp1.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device msm_device_mdp_rgb2_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 7, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_mdp1.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device msm_device_rot_src_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 8, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_rot.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device msm_device_rot_dst_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 9, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_rot.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device msm_device_ijpeg_src_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 10, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_ijpeg.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device msm_device_ijpeg_dst_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 11, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_ijpeg.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device msm_device_vfe_imgwr_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 12, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_vfe.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device msm_device_vfe_misc_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 13, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_vfe.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device msm_device_vcodec_a_stream_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 14, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_vcodec_a.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device msm_device_vcodec_a_mm1_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 15, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_vcodec_a.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device msm_device_vcodec_b_mm2_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 16, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_vcodec_b.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:50 -08:00
										 |  |  | static struct platform_device msm_device_gfx3d_user_ctx = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 17, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_gfx3d.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:50 -08:00
										 |  |  | static struct platform_device msm_device_gfx3d_priv_ctx = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 18, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_gfx3d.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:51 -08:00
										 |  |  | static struct platform_device msm_device_gfx2d0_2d0_ctx = { | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:50 -08:00
										 |  |  | 	.id = 19, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 		.parent = &msm_device_iommu_gfx2d0.dev, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:52 -08:00
										 |  |  | static struct platform_device msm_device_gfx2d1_2d1_ctx = { | 
					
						
							|  |  |  | 	.name = "msm_iommu_ctx", | 
					
						
							|  |  |  | 	.id = 20, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.parent = &msm_device_iommu_gfx2d1.dev, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | static struct platform_device *msm_iommu_devs[] = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 	&msm_device_iommu_jpegd, | 
					
						
							|  |  |  | 	&msm_device_iommu_vpe, | 
					
						
							|  |  |  | 	&msm_device_iommu_mdp0, | 
					
						
							|  |  |  | 	&msm_device_iommu_mdp1, | 
					
						
							|  |  |  | 	&msm_device_iommu_rot, | 
					
						
							|  |  |  | 	&msm_device_iommu_ijpeg, | 
					
						
							|  |  |  | 	&msm_device_iommu_vfe, | 
					
						
							|  |  |  | 	&msm_device_iommu_vcodec_a, | 
					
						
							|  |  |  | 	&msm_device_iommu_vcodec_b, | 
					
						
							|  |  |  | 	&msm_device_iommu_gfx3d, | 
					
						
							|  |  |  | 	&msm_device_iommu_gfx2d0, | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:52 -08:00
										 |  |  | 	&msm_device_iommu_gfx2d1, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_dev *msm_iommu_data[] = { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 	&jpegd_iommu, | 
					
						
							|  |  |  | 	&vpe_iommu, | 
					
						
							|  |  |  | 	&mdp0_iommu, | 
					
						
							|  |  |  | 	&mdp1_iommu, | 
					
						
							|  |  |  | 	&rot_iommu, | 
					
						
							|  |  |  | 	&ijpeg_iommu, | 
					
						
							|  |  |  | 	&vfe_iommu, | 
					
						
							|  |  |  | 	&vcodec_a_iommu, | 
					
						
							|  |  |  | 	&vcodec_b_iommu, | 
					
						
							|  |  |  | 	&gfx3d_iommu, | 
					
						
							|  |  |  | 	&gfx2d0_iommu, | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:52 -08:00
										 |  |  | 	&gfx2d1_iommu, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device *msm_iommu_ctx_devs[] = { | 
					
						
							|  |  |  | 	&msm_device_jpegd_src_ctx, | 
					
						
							|  |  |  | 	&msm_device_jpegd_dst_ctx, | 
					
						
							|  |  |  | 	&msm_device_vpe_src_ctx, | 
					
						
							|  |  |  | 	&msm_device_vpe_dst_ctx, | 
					
						
							|  |  |  | 	&msm_device_mdp_vg1_ctx, | 
					
						
							|  |  |  | 	&msm_device_mdp_rgb1_ctx, | 
					
						
							|  |  |  | 	&msm_device_mdp_vg2_ctx, | 
					
						
							|  |  |  | 	&msm_device_mdp_rgb2_ctx, | 
					
						
							|  |  |  | 	&msm_device_rot_src_ctx, | 
					
						
							|  |  |  | 	&msm_device_rot_dst_ctx, | 
					
						
							|  |  |  | 	&msm_device_ijpeg_src_ctx, | 
					
						
							|  |  |  | 	&msm_device_ijpeg_dst_ctx, | 
					
						
							|  |  |  | 	&msm_device_vfe_imgwr_ctx, | 
					
						
							|  |  |  | 	&msm_device_vfe_misc_ctx, | 
					
						
							|  |  |  | 	&msm_device_vcodec_a_stream_ctx, | 
					
						
							|  |  |  | 	&msm_device_vcodec_a_mm1_ctx, | 
					
						
							|  |  |  | 	&msm_device_vcodec_b_mm2_ctx, | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:50 -08:00
										 |  |  | 	&msm_device_gfx3d_user_ctx, | 
					
						
							|  |  |  | 	&msm_device_gfx3d_priv_ctx, | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:51 -08:00
										 |  |  | 	&msm_device_gfx2d0_2d0_ctx, | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:52 -08:00
										 |  |  | 	&msm_device_gfx2d1_2d1_ctx, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct msm_iommu_ctx_dev *msm_iommu_ctx_data[] = { | 
					
						
							|  |  |  | 	&jpegd_src_ctx, | 
					
						
							|  |  |  | 	&jpegd_dst_ctx, | 
					
						
							|  |  |  | 	&vpe_src_ctx, | 
					
						
							|  |  |  | 	&vpe_dst_ctx, | 
					
						
							|  |  |  | 	&mdp_vg1_ctx, | 
					
						
							|  |  |  | 	&mdp_rgb1_ctx, | 
					
						
							|  |  |  | 	&mdp_vg2_ctx, | 
					
						
							|  |  |  | 	&mdp_rgb2_ctx, | 
					
						
							|  |  |  | 	&rot_src_ctx, | 
					
						
							|  |  |  | 	&rot_dst_ctx, | 
					
						
							|  |  |  | 	&ijpeg_src_ctx, | 
					
						
							|  |  |  | 	&ijpeg_dst_ctx, | 
					
						
							|  |  |  | 	&vfe_imgwr_ctx, | 
					
						
							|  |  |  | 	&vfe_misc_ctx, | 
					
						
							|  |  |  | 	&vcodec_a_stream_ctx, | 
					
						
							|  |  |  | 	&vcodec_a_mm1_ctx, | 
					
						
							|  |  |  | 	&vcodec_b_mm2_ctx, | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:50 -08:00
										 |  |  | 	&gfx3d_user_ctx, | 
					
						
							|  |  |  | 	&gfx3d_priv_ctx, | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:51 -08:00
										 |  |  | 	&gfx2d0_2d0_ctx, | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:52 -08:00
										 |  |  | 	&gfx2d1_2d1_ctx, | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:53 -08:00
										 |  |  | static int __init msm8x60_iommu_init(void) | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int ret, i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = platform_device_register(&msm_root_iommu_dev); | 
					
						
							|  |  |  | 	if (ret != 0) { | 
					
						
							|  |  |  | 		pr_err("Failed to register root IOMMU device!\n"); | 
					
						
							|  |  |  | 		goto failure; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < ARRAY_SIZE(msm_iommu_devs); i++) { | 
					
						
							|  |  |  | 		ret = platform_device_add_data(msm_iommu_devs[i], | 
					
						
							|  |  |  | 					       msm_iommu_data[i], | 
					
						
							|  |  |  | 					       sizeof(struct msm_iommu_dev)); | 
					
						
							|  |  |  | 		if (ret != 0) { | 
					
						
							|  |  |  | 			pr_err("platform_device_add_data failed, " | 
					
						
							|  |  |  | 			       "i = %d\n", i); | 
					
						
							|  |  |  | 			goto failure_unwind; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ret = platform_device_register(msm_iommu_devs[i]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 			pr_err("platform_device_register iommu failed, " | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 			       "i = %d\n", i); | 
					
						
							|  |  |  | 			goto failure_unwind; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < ARRAY_SIZE(msm_iommu_ctx_devs); i++) { | 
					
						
							|  |  |  | 		ret = platform_device_add_data(msm_iommu_ctx_devs[i], | 
					
						
							|  |  |  | 					       msm_iommu_ctx_data[i], | 
					
						
							|  |  |  | 					       sizeof(*msm_iommu_ctx_devs[i])); | 
					
						
							|  |  |  | 		if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:49 -08:00
										 |  |  | 			pr_err("platform_device_add_data iommu failed, " | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | 			       "i = %d\n", i); | 
					
						
							|  |  |  | 			goto failure_unwind2; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ret = platform_device_register(msm_iommu_ctx_devs[i]); | 
					
						
							|  |  |  | 		if (ret != 0) { | 
					
						
							|  |  |  | 			pr_err("platform_device_register ctx failed, " | 
					
						
							|  |  |  | 			       "i = %d\n", i); | 
					
						
							|  |  |  | 			goto failure_unwind2; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | failure_unwind2: | 
					
						
							|  |  |  | 	while (--i >= 0) | 
					
						
							|  |  |  | 		platform_device_unregister(msm_iommu_ctx_devs[i]); | 
					
						
							|  |  |  | failure_unwind: | 
					
						
							|  |  |  | 	while (--i >= 0) | 
					
						
							|  |  |  | 		platform_device_unregister(msm_iommu_devs[i]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	platform_device_unregister(&msm_root_iommu_dev); | 
					
						
							|  |  |  | failure: | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 19:29:53 -08:00
										 |  |  | static void __exit msm8x60_iommu_exit(void) | 
					
						
							| 
									
										
										
										
											2010-08-24 19:51:15 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < ARRAY_SIZE(msm_iommu_ctx_devs); i++) | 
					
						
							|  |  |  | 		platform_device_unregister(msm_iommu_ctx_devs[i]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < ARRAY_SIZE(msm_iommu_devs); ++i) | 
					
						
							|  |  |  | 		platform_device_unregister(msm_iommu_devs[i]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	platform_device_unregister(&msm_root_iommu_dev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | subsys_initcall(msm8x60_iommu_init); | 
					
						
							|  |  |  | module_exit(msm8x60_iommu_exit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_LICENSE("GPL v2"); | 
					
						
							|  |  |  | MODULE_AUTHOR("Stepan Moskovchenko <stepanm@codeaurora.org>"); |