Linux 中的 omap3 gpmc 配置
是否可以在 Linux 上启动后更改 OMAP3 gpmc 的配置?我正在为使用 OMAP3 gpmc 总线的设备编写驱动程序。我们希望能够仅在需要时加载驱动程序。既然 GPMC 控制也对内存进行编程,linux 会允许吗?
Is it possible to change configuration of a OMAP3 gpmc after boot-up on linux? I am writing a driver for a device that use the OMAP3 gpmc bus. We would prefer to be able to load the driver only when needed. Would linux allow it, since the GPMC control also program memory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(如果您还没有这样做,我建议您加入 TI e2e 社区:有许多关于 TI OMAP 架构的持续讨论,TI 工程师概述论坛以提供答案)。
配置内核时,您可以将设备驱动程序指定为内置驱动程序或模块驱动程序。您可以稍后使用 insmod 命令加载该模块。当然,该选项取决于您的目标架构。
(If you haven't done it already, I suggest you join TI e2e community: there are many ongoing discussions about TI OMAP architecture and TI engineers overview the forums to provide answers).
You could specify a device driver as built-in or module when you configure the kernel. You can load that module later on with the insmod command. That option depends on your target architecture, of course.