omap_hwmod: rtc: doesn‘t have mpu register target

[    0.069442] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2574 _init+0x4c8/0x520()
[    0.069455] omap_hwmod: rtc: doesn‘t have mpu register target base
[    0.069463] Modules linked in:
[    0.069485] CPU: 0 PID: 1 Comm: swapper Not tainted 3.12.10-ti2013.12.01 #46
[    0.069495] Backtrace:
[    0.069527] [<c0017880>] (dump_backtrace+0x0/0x10c) from [<c0017a1c>] (show_stack+0x18/0x1c)
[    0.069538]  r6:c079311c r5:00000009 r4:cd07fe30 r3:00000000
[    0.069573] [<c0017a04>] (show_stack+0x0/0x1c) from [<c0596674>] (dump_stack+0x20/0x28)
[    0.069602] [<c0596654>] (dump_stack+0x0/0x28) from [<c0046d08>] (warn_slowpath_common+0x70/0x90)
[    0.069701] [<c0046c98>] (warn_slowpath_common+0x0/0x90) from [<c0046dcc>] (warn_slowpath_fmt+0x38/0x40)
[    0.069710]  r8:c0793638 r7:00000000 r6:c0792c54 r5:c07eb698 r4:c081210c
[    0.069742] [<c0046d94>] (warn_slowpath_fmt+0x0/0x40) from [<c079311c>] (_init+0x4c8/0x520)
[    0.069751]  r3:c0713070 r2:c06d00c0
[    0.069780] [<c0792c54>] (_init+0x0/0x520) from [<c002dcac>] (omap_hwmod_for_each+0x38/0x64)
[    0.069801] [<c002dc74>] (omap_hwmod_for_each+0x0/0x64) from [<c0793664>] (__omap_hwmod_setup_all+0x2c/0x48)
[    0.069810]  r7:c0786410 r6:c086b200 r5:00000001 r4:c07dc49c
[    0.069840] [<c0793638>] (__omap_hwmod_setup_all+0x0/0x48) from [<c00089ec>] (do_one_initcall+0xf4/0x154)
[    0.069866] [<c00088f8>] (do_one_initcall+0x0/0x154) from [<c0786b94>] (kernel_init_freeable+0xf0/0x1bc)
[    0.069899] [<c0786aa4>] (kernel_init_freeable+0x0/0x1bc) from [<c059132c>] (kernel_init+0x10/0xec)
[    0.069931] [<c059131c>] (kernel_init+0x0/0xec) from [<c00146f8>] (ret_from_fork+0x14/0x3c)
[    0.069939]  r4:00000000 r3:00000000
[    0.070004] ---[ end trace 1b75b31a2719ed1c ]---
[    0.128886] omap_hwmod: debugss: _wait_target_disable failed
[    0.129744] pinctrl core: initialized pinctrl subsystem

解决办法:

remove the am33xx_l4_wkup__rtc entry from am33xx_hwmod_ocp_ifs array in arch/arm/mach-omap2/omap_hwmod_33xx_data.c

把arch/arm/mach-omap2/omap_hwmod_33xx_data.c目录下的am33xx_l4_wkup__rtc entry 的结构体全部去掉。

时间: 2024-10-27 07:00:26

omap_hwmod: rtc: doesn‘t have mpu register target的相关文章

2天驾驭DIV+CSS (基础篇)(转)

这是去年看到的一片文章,感觉在我的学习中,有不少的影响.于是把它分享给想很快了解css的兄弟们. 基础篇[知识一] “DIV+CSS” 的叫法是不准确的[知识二] “DIV+CSS” 将你引入两大误区[知识三] 什么是W3C标准?[基础一] CSS如何控制页面[基础二] CSS选择器[基础三] CSS选择器命名及常用命名[基础四] 盒子模型[基础五] 块状元素和内联元素 实战篇[第一课] 实战小热身[第二课] 浮动[第三课] 清除浮动[第四课] 导航条(上) | 导航条(下)[大练习] 前四节课

css学习入门篇(1)

1.网页制作 的两大误区:[1].网页用了Table,页面就不标准[2].div标签越多越好. 解释:table是为了存储数据而div是为了架设页面 ,两者有不同的工作职能 . 2.W3C标准:他不是一个标准,而是一系列标准的组合:结构标准(代表语言HTML).表现标准(CSS).动作标准(JavaScript). 3.css控制页面的四种方式: [1]行内样式:<p style=" color: #F00; background: #CCC; font-size: 12px;"

由浅入深分析mybatis通过动态代理实现拦截器(插件)的原理

最近在用mybatis做项目,需要用到mybatis的拦截器功能,就顺便把mybatis的拦截器源码大致的看了一遍,为了温故而知新,在此就按照自己的理解由浅入深的理解一下它的设计. 和大家分享一下,不足和谬误之处欢迎交流.直接入正题. 首先,先不管mybatis的源码是怎么设计的,先假设一下自己要做一个拦截器应该怎么做.拦截器的实现都是基于代理的设计模式设计的,简单的说就是要创造一个目标类的代理类,在代理类中执行目标类的方法并拦截执行拦截器代码. 那么我们就用JDK的动态代理设计一个简单的拦截器

Django网站用JS实现弹窗登录并显示Cookie

我想给我的网站实现这样一功能:点击登录按钮,弹出登陆页面,如果登录失败,无刷新显示"账号或密码错误",如果登陆成功,刷新整个页面并显示cookie. 在写程序之前我就感觉到这中间有个矛盾,如果我想无刷新显示就要用到ajax异步传输,用了ajax还怎么做到刷新页面呢?如果登录失败不刷新,登录成功才刷新,这里需要一个判断.之前我的提交按钮 input 标签 type 属性为 submit 然后在 js 里面设置 return false ,如果经常使用ajax的话对这个应该不陌生,这里就出

右下角浮窗&amp;动画效果

2015-07-17 11:07:57 CSS 1 #goreg { 2 width: 70px; 3 position: fixed; 4 bottom: 20px; 5 right: 25px; 6 z-index: 100; 7 opacity:0.4; 8 text-align: center; 9 } 10 #goreg a { 11 text-decoration:none; 12 width: 70px; 13 height: 70px; 14 display: inline-bl

Maxim实时时钟芯片设计指南5413-二进制编码十进制(BCD)格式实时时钟中的状态机逻辑

网上DS12C887的文章涉及到时间的存储格式使用的都是二进制代码,究竟使用BCD码该如何操作?正好美信官网上有一篇文章.美信官网不稳定,先贴到这里,有时间再翻译. 原文链接 State Machine Logic in Binary-Coded Decimal (BCD)-Formatted Real-Time Clocks 摘要 : When developing code to operate a real-time clock (RTC), it is often beneficial

OK335xS GPMC nand device register hacking

/********************************************************************************* * OK335xS GPMC nand device register hacking * 说明: * 由于最近遇到No NAND device found这个内核错误,在网络上也没找到很好的 * 解决办法,于是只能自己去跟踪整个设备.驱动的注册流程,试着去理解整个系统 * 的运作流程. * * 2015-9-2 雨 深圳 南山平山

openwrt 增加RTC(MCP7940 I2C总线)驱动详解

一.硬件平台 1.1 控制器:MT7620(A9内核) 1.2 RTC芯片:MCP7940(I2C总线) 二.软件平台 2.1.开发环境:Ubuntu12.04 2.2.软件版本:openwrt 官方15.05版本SDK开发包(CHAOS CALMER 15.05版本) 三.功能说明 本文章所选择的目标芯片为MT7620,profile 选择的为"Xiaomi MiWiFi Mini ". 3.1.在openwrt 系统上,移植mcp7940的rtc芯片驱动. 3.2.在openwrt

Method and apparatus for loading a segment register in a microprocessor capable of operating in multiple modes

A microprocessor contains an address generation unit, including a segment block, for loading?descriptor?data and a segment selector in a segment register. Two?descriptor?loads from a?global?descriptor?table?(GDT) and a local?descriptor table?(LDT) ar