Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1499376
| From | Daniel Vetter <daniel@ffwll.ch> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH]"drm: change DRM_MIPI_DSI module type from "bool" to "tristate". |
| Date | 2016-10-12 09:00 +0200 |
| Message-ID | <srlGa-Ku-11@gated-at.bofh.it> (permalink) |
| References | (3 earlier) <sr0V3-4mQ-1@gated-at.bofh.it> <sr20N-52o-9@gated-at.bofh.it> <sr1Hr-4Wf-11@gated-at.bofh.it> <sr20N-52o-7@gated-at.bofh.it> <sri5z-71H-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Wed, Oct 12, 2016 at 03:08:24AM +0000, Sun, Jing A wrote: > Interestingly, I am able to reload i915 and drm. Our CI has tests for > i915 unload/reload, but does not check drm. In any case the config > problem should not impact the reloadability of i915. > ====== > Sorry that I didn't make myself clear. In order to replace the default > i915 module with an updated one, the related DRM modules also need to be > updated to match the updated i915, hence the restriction. Just to avoid tears in the future: If you plan to ship this in product, you won't ship. And for debugging, just install a kernel with your changes for both drm and i915. In short, your use-case isn't really valid (but we could still make the dsi code modular if people feel like). -Daniel > > Regards, > Sun, Jing > > > -----Original Message----- > From: Andrzej Hajda [mailto:a.hajda@samsung.com] > Sent: Tuesday, October 11, 2016 5:53 PM > To: Jani Nikula; Sun, Jing A; Takashi Iwai > Cc: airlied@linux.ie; Vetter, Daniel; linux-kernel@vger.kernel.org; dri-devel@lists.freedesktop.org; Thierry Reding; Emil Velikov > Subject: Re: [PATCH]"drm: change DRM_MIPI_DSI module type from "bool" to "tristate". > > On 11.10.2016 11:33, Jani Nikula wrote: > > On Tue, 11 Oct 2016, "Sun, Jing A" <jing.a.sun@intel.com> wrote: > >> It's needed that DRM Driver module could be removed and reloaded > >> after kernel booting on the projects that I have been working on, and > >> I hope such module type change could be accepted. Looks like Iwai has > >> similar change request as well. Would you please review it and let us > >> know if any concerns? > > Looking at the Kconfig, selecting CONFIG_DRM_MIPI_DSI is against the > > recommendations of Documentation/kbuild/kconfig-language.txt: > > > > select should be used with care. select will force > > a symbol to a value without visiting the dependencies. > > By abusing select you are able to select a symbol FOO even > > if FOO depends on BAR that is not set. > > In general use select only for non-visible symbols > > (no prompts anywhere) and for symbols with no dependencies. > > That will limit the usefulness but on the other hand avoid > > the illegal configurations all over. > > All existing drivers which selects DRM_MIPI_DSI also depends on DRM. > So the dependency is always true. I am not sure if it could not change in the future, but in such case mipi_dsi bus should be completely detached from DRM framework, I hope we have not such case yet :) > > > > > Indeed, you may end up with CONFIG_DRM_MIPI_DSI=y and CONFIG_DRM=m, > > which violates DRM_MIPI_DSI dependency on CONFIG_DRM. This is broken > > and should be fixed. The suggested patch does *not* fix this issue. > > At the moment it should not be possible. > > Regards > Andrzej > > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH]"drm: change DRM_MIPI_DSI module type from "bool" to "tristate". "Sun, Jing A" <jing.a.sun@intel.com> - 2016-10-10 09:40 +0200
Re: [PATCH]"drm: change DRM_MIPI_DSI module type from "bool" to "tristate". Jani Nikula <jani.nikula@linux.intel.com> - 2016-10-10 10:30 +0200
Re: [PATCH]"drm: change DRM_MIPI_DSI module type from "bool" to "tristate". Takashi Iwai <tiwai@suse.de> - 2016-10-10 12:00 +0200
RE: [PATCH]"drm: change DRM_MIPI_DSI module type from "bool" to "tristate". "Sun, Jing A" <jing.a.sun@intel.com> - 2016-10-11 10:50 +0200
Re: [PATCH]"drm: change DRM_MIPI_DSI module type from "bool" to "tristate". Andrzej Hajda <a.hajda@samsung.com> - 2016-10-11 11:20 +0200
RE: [PATCH]"drm: change DRM_MIPI_DSI module type from "bool" to "tristate". Jani Nikula <jani.nikula@linux.intel.com> - 2016-10-11 11:40 +0200
Re: [PATCH]"drm: change DRM_MIPI_DSI module type from "bool" to "tristate". Andrzej Hajda <a.hajda@samsung.com> - 2016-10-11 12:00 +0200
RE: [PATCH]"drm: change DRM_MIPI_DSI module type from "bool" to "tristate". "Sun, Jing A" <jing.a.sun@intel.com> - 2016-10-12 05:10 +0200
Re: [PATCH]"drm: change DRM_MIPI_DSI module type from "bool" to "tristate". Daniel Vetter <daniel@ffwll.ch> - 2016-10-12 09:00 +0200
RE: [PATCH]"drm: change DRM_MIPI_DSI module type from "bool" to "tristate". "Sun, Jing A" <jing.a.sun@intel.com> - 2016-10-12 11:10 +0200
RE: [PATCH]"drm: change DRM_MIPI_DSI module type from "bool" to "tristate". Jani Nikula <jani.nikula@linux.intel.com> - 2016-10-12 13:00 +0200
Re: [PATCH]"drm: change DRM_MIPI_DSI module type from "bool" to "tristate". Emil Velikov <emil.l.velikov@gmail.com> - 2016-10-12 13:30 +0200
Re: [PATCH]"drm: change DRM_MIPI_DSI module type from "bool" to "tristate". Jani Nikula <jani.nikula@linux.intel.com> - 2016-10-12 16:30 +0200
csiph-web