* [PATCH 1/3] MSM: Remove iommu include from drivers/gpu/drm/msm/mdp4/mdp4_kms.c
@ 2013-09-25 14:49 Joerg Roedel
[not found] ` <1380120582-9068-1-git-send-email-joro-zLv9SwRftAIdnm+yROfE0A@public.gmane.org>
0 siblings, 1 reply; 5+ messages in thread
From: Joerg Roedel @ 2013-09-25 14:49 UTC (permalink / raw)
To: Stephen Boyd
Cc: David Airlie, iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW,
linux-kernel-u79uwXL29TY76Z2rM5mHXA, Rob Clark
The include file has been removed and the file does not
need it anyway, so remove it. Fixes a compile error.
Signed-off-by: Joerg Roedel <joro-zLv9SwRftAIdnm+yROfE0A@public.gmane.org>
---
drivers/gpu/drm/msm/mdp4/mdp4_kms.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/gpu/drm/msm/mdp4/mdp4_kms.c b/drivers/gpu/drm/msm/mdp4/mdp4_kms.c
index 5db5bba..bc7fd11 100644
--- a/drivers/gpu/drm/msm/mdp4/mdp4_kms.c
+++ b/drivers/gpu/drm/msm/mdp4/mdp4_kms.c
@@ -19,8 +19,6 @@
#include "msm_drv.h"
#include "mdp4_kms.h"
-#include <mach/iommu.h>
-
static struct mdp4_platform_config *mdp4_get_config(struct platform_device *dev);
static int mdp4_hw_init(struct msm_kms *kms)
--
1.7.9.5
^ permalink raw reply related [flat|nested] 5+ messages in thread[parent not found: <1380120582-9068-1-git-send-email-joro-zLv9SwRftAIdnm+yROfE0A@public.gmane.org>]
* [PATCH 2/3] Fix compile error in drivers/gpu/drm/msm/msm_drv.c [not found] ` <1380120582-9068-1-git-send-email-joro-zLv9SwRftAIdnm+yROfE0A@public.gmane.org> @ 2013-09-25 14:49 ` Joerg Roedel 2013-09-25 14:49 ` [PATCH 3/3] Fix compile error in drivers/gpu/drm/msm/msm_drv.c with IOMMU disabled Joerg Roedel 1 sibling, 0 replies; 5+ messages in thread From: Joerg Roedel @ 2013-09-25 14:49 UTC (permalink / raw) To: Stephen Boyd Cc: David Airlie, iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW, linux-kernel-u79uwXL29TY76Z2rM5mHXA, Rob Clark The include file has been moved but this file was not updated, so compile breaks. Signed-off-by: Joerg Roedel <joro-zLv9SwRftAIdnm+yROfE0A@public.gmane.org> --- drivers/gpu/drm/msm/Makefile | 3 --- drivers/gpu/drm/msm/msm_drv.c | 5 ++++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/msm/Makefile b/drivers/gpu/drm/msm/Makefile index e179148..fc7ed9e 100644 --- a/drivers/gpu/drm/msm/Makefile +++ b/drivers/gpu/drm/msm/Makefile @@ -1,7 +1,4 @@ ccflags-y := -Iinclude/drm -Idrivers/gpu/drm/msm -ifeq (, $(findstring -W,$(EXTRA_CFLAGS))) - ccflags-y += -Werror -endif msm-y := \ adreno/adreno_gpu.o \ diff --git a/drivers/gpu/drm/msm/msm_drv.c b/drivers/gpu/drm/msm/msm_drv.c index 008d772..08acebb 100644 --- a/drivers/gpu/drm/msm/msm_drv.c +++ b/drivers/gpu/drm/msm/msm_drv.c @@ -18,7 +18,10 @@ #include "msm_drv.h" #include "msm_gpu.h" -#include <mach/iommu.h> +#ifndef I_AM_NOT_TOO_LAZY_TO_FIX_DRIVERS_WHEN_I_MOVE_INCLUDE_FILES +#warning "Help! I use non-public subsystem headers. Please fix me!" +#include <../../../iommu/msm_iommu.h> +#endif static void msm_fb_output_poll_changed(struct drm_device *dev) { -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 3/3] Fix compile error in drivers/gpu/drm/msm/msm_drv.c with IOMMU disabled [not found] ` <1380120582-9068-1-git-send-email-joro-zLv9SwRftAIdnm+yROfE0A@public.gmane.org> 2013-09-25 14:49 ` [PATCH 2/3] Fix compile error in drivers/gpu/drm/msm/msm_drv.c Joerg Roedel @ 2013-09-25 14:49 ` Joerg Roedel 2013-09-27 15:28 ` Rob Clark 1 sibling, 1 reply; 5+ messages in thread From: Joerg Roedel @ 2013-09-25 14:49 UTC (permalink / raw) To: Stephen Boyd Cc: David Airlie, iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW, linux-kernel-u79uwXL29TY76Z2rM5mHXA, Rob Clark The function msm_iommu_get_ctx() is needed buy the MSM-GPU driver with and wiithout IOMMU compiled in. Make the function available when no IOMMU driver is there. Signed-off-by: Joerg Roedel <joro-zLv9SwRftAIdnm+yROfE0A@public.gmane.org> --- drivers/iommu/msm_iommu.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/iommu/msm_iommu.h b/drivers/iommu/msm_iommu.h index 5c7c955..da53558 100644 --- a/drivers/iommu/msm_iommu.h +++ b/drivers/iommu/msm_iommu.h @@ -108,7 +108,14 @@ struct msm_iommu_ctx_drvdata { * Useful for testing and drivers that do not yet fully have IOMMU stuff in * their platform devices. */ +#ifdef CONFIG_MSM_IOMMU struct device *msm_iommu_get_ctx(const char *ctx_name); +#else +static inline struct device *msm_iommu_get_ctx(const char *ctx_name) +{ + return NULL; +} +#endif /* * Interrupt handler for the IOMMU context fault interrupt. Hooking the -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 3/3] Fix compile error in drivers/gpu/drm/msm/msm_drv.c with IOMMU disabled 2013-09-25 14:49 ` [PATCH 3/3] Fix compile error in drivers/gpu/drm/msm/msm_drv.c with IOMMU disabled Joerg Roedel @ 2013-09-27 15:28 ` Rob Clark 2013-09-27 16:02 ` Joerg Roedel 0 siblings, 1 reply; 5+ messages in thread From: Rob Clark @ 2013-09-27 15:28 UTC (permalink / raw) To: Joerg Roedel Cc: Stephen Boyd, David Airlie, dri-devel@lists.freedesktop.org, Linux Kernel Mailing List, iommu, linux-arm-msm On Wed, Sep 25, 2013 at 10:49 AM, Joerg Roedel <joro@8bytes.org> wrote: > The function msm_iommu_get_ctx() is needed buy the MSM-GPU > driver with and wiithout IOMMU compiled in. Make the > function available when no IOMMU driver is there. > For this one, Reviewed-by: Rob Clark <robdclark@gmail.com> But I am not the right one to merge this one. And, well, if there is a way to make this work without msm_iommu_get_ctx(), I am interested in some hints ;-) Of the other two, 1/3 looks fine and I'll pull that in. And I'll see if I can come up with a better way for 2/3 BR, -R > Signed-off-by: Joerg Roedel <joro@8bytes.org> > --- > drivers/iommu/msm_iommu.h | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/drivers/iommu/msm_iommu.h b/drivers/iommu/msm_iommu.h > index 5c7c955..da53558 100644 > --- a/drivers/iommu/msm_iommu.h > +++ b/drivers/iommu/msm_iommu.h > @@ -108,7 +108,14 @@ struct msm_iommu_ctx_drvdata { > * Useful for testing and drivers that do not yet fully have IOMMU stuff in > * their platform devices. > */ > +#ifdef CONFIG_MSM_IOMMU > struct device *msm_iommu_get_ctx(const char *ctx_name); > +#else > +static inline struct device *msm_iommu_get_ctx(const char *ctx_name) > +{ > + return NULL; > +} > +#endif > > /* > * Interrupt handler for the IOMMU context fault interrupt. Hooking the > -- > 1.7.9.5 > > ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 3/3] Fix compile error in drivers/gpu/drm/msm/msm_drv.c with IOMMU disabled 2013-09-27 15:28 ` Rob Clark @ 2013-09-27 16:02 ` Joerg Roedel 0 siblings, 0 replies; 5+ messages in thread From: Joerg Roedel @ 2013-09-27 16:02 UTC (permalink / raw) To: Rob Clark Cc: Stephen Boyd, David Airlie, dri-devel@lists.freedesktop.org, Linux Kernel Mailing List, iommu, linux-arm-msm Hi Rob, On Fri, Sep 27, 2013 at 11:28:36AM -0400, Rob Clark wrote: > But I am not the right one to merge this one. And, well, if there is > a way to make this work without msm_iommu_get_ctx(), I am interested > in some hints ;-) > > Of the other two, 1/3 looks fine and I'll pull that in. And I'll see > if I can come up with a better way for 2/3 Yeah, patch 2/3 was not meant very seriously, it was more a way to say that someone should fix it who knows the best way how to do it ;) Thanks for your review and taking 1/3. Joerg ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-09-27 16:02 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-25 14:49 [PATCH 1/3] MSM: Remove iommu include from drivers/gpu/drm/msm/mdp4/mdp4_kms.c Joerg Roedel
[not found] ` <1380120582-9068-1-git-send-email-joro-zLv9SwRftAIdnm+yROfE0A@public.gmane.org>
2013-09-25 14:49 ` [PATCH 2/3] Fix compile error in drivers/gpu/drm/msm/msm_drv.c Joerg Roedel
2013-09-25 14:49 ` [PATCH 3/3] Fix compile error in drivers/gpu/drm/msm/msm_drv.c with IOMMU disabled Joerg Roedel
2013-09-27 15:28 ` Rob Clark
2013-09-27 16:02 ` Joerg Roedel
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).