uboot中rtc顶层分析

uboot一般不会要求开启rtc,只是还是支持rtc以备特殊需求的。

底层驱动移植前面两篇已经介绍。这里介绍顶层的调用过程。顶层在uboot/common/cmd_date.c

/*

* (C) Copyright 2001

* Wolfgang Denk, DENX Software Engineering, [email protected]

*

* See file CREDITS for list of people who contributed to this

* project.

*

* This program is free software; you can redistribute it and/or

* modify it under the terms of the GNU General Public License as

* published by the Free Software Foundation; either version 2 of

* the License, or (at your option) any later version.

*

* 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., 59 Temple Place, Suite 330, Boston,

* MA 02111-1307 USA

*/

/*

* RTC, Date & Time support: get and set date & time

*/

include

include

include

include

ifdef CONFIG_RELOC_FIXUP_WORKS

define RELOC(a) a

else

define RELOC(a) ((typeof(a))((unsigned long)(a) + gd->reloc_off))

endif

int mk_date (char , struct rtc_time );

int do_date (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])

{

struct rtc_time tm;

int rcode = 0;

int old_bus;

/* switch to correct I2C bus */
old_bus = I2C_GET_BUS();
I2C_SET_BUS(CONFIG_SYS_RTC_BUS_NUM);

switch (argc) {
case 2:         /* set date & time */
    if (strcmp(argv[1],"reset") == 0) {
        puts ("Reset RTC...\n");
        rtc_reset ();
    } else {
        /* initialize tm with current time */
        rcode = rtc_get (&tm);

        if(!rcode) {
            /* insert new date & time */
            if (mk_date (argv[1], &tm) != 0) {
                puts ("## Bad date format\n");
                break;
            }
            /* and write to RTC */
            rcode = rtc_set (&tm);
            if(rcode)
                puts("## Set date failed\n");
        } else {
            puts("## Get date failed\n");
        }
    }
    /* FALL TROUGH */
case 1:         /* get date & time */
    rcode = rtc_get (&tm);

    if (rcode) {
        puts("## Get date failed\n");
        break;
    }

    printf ("Date: %4d-%02d-%02d (%sday)    Time: %2d:%02d:%02d\n",
        tm.tm_year, tm.tm_mon, tm.tm_mday,
        (tm.tm_wday<0 || tm.tm_wday>6) ?
            "unknown " : RELOC(weekdays[tm.tm_wday]),
        tm.tm_hour, tm.tm_min, tm.tm_sec);

    break;
default:
    cmd_usage(cmdtp);
    rcode = 1;
}

/* switch back to original I2C bus */
I2C_SET_BUS(old_bus);

return rcode;

}

/*

* simple conversion of two-digit string with error checking

*/

static int cnvrt2 (char *str, int *valp)

{

int val;

if ((*str < ‘0‘) || (*str > ‘9‘))
    return (-1);

val = *str - ‘0‘;

++str;

if ((*str < ‘0‘) || (*str > ‘9‘))
    return (-1);

*valp = 10 * val + (*str - ‘0‘);

return (0);

}

/*

* Convert date string: MMDDhhmm[[CC]YY][.ss]

*

* Some basic checking for valid values is done, but this will not catch

* all possible error conditions.

*/

int mk_date (char *datestr, struct rtc_time *tmp)

{

int len, val;

char *ptr;

ptr = strchr (datestr,‘.‘);
len = strlen (datestr);

/* Set seconds */
if (ptr) {
    int sec;

    *ptr++ = ‘\0‘;
    if ((len - (ptr - datestr)) != 2)
        return (-1);

    len = strlen (datestr);

    if (cnvrt2 (ptr, &sec))
        return (-1);

    tmp->tm_sec = sec;
} else {
    tmp->tm_sec = 0;
}

if (len == 12) {        /* MMDDhhmmCCYY */
    int year, century;

    if (cnvrt2 (datestr+ 8, &century) ||
        cnvrt2 (datestr+10, &year) ) {
        return (-1);
    }
    tmp->tm_year = 100 * century + year;
} else if (len == 10) {     /* MMDDhhmmYY   */
    int year, century;

    century = tmp->tm_year / 100;
    if (cnvrt2 (datestr+ 8, &year))
        return (-1);
    tmp->tm_year = 100 * century + year;
}

switch (len) {
case 8:         /* MMDDhhmm */
    /* fall thru */
case 10:        /* MMDDhhmmYY   */
    /* fall thru */
case 12:        /* MMDDhhmmCCYY */
    if (cnvrt2 (datestr+0, &val) ||
        val > 12) {
        break;
    }
    tmp->tm_mon  = val;
    if (cnvrt2 (datestr+2, &val) ||
        val > ((tmp->tm_mon==2) ? 29 : 31)) {
        break;
    }
    tmp->tm_mday = val;

    if (cnvrt2 (datestr+4, &val) ||
        val > 23) {
        break;
    }
    tmp->tm_hour = val;

    if (cnvrt2 (datestr+6, &val) ||
        val > 59) {
        break;
    }
    tmp->tm_min  = val;

    /* calculate day of week */
    GregorianDay (tmp);

    return (0);
default:
    break;
}

return (-1);

}

/*****************************************/

U_BOOT_CMD(

date, 2, 1, do_date,

“get/set/reset date & time”,

“[MMDDhhmm[[CC]YY][.ss]]\ndate reset\n”

” - without arguments: print date & time\n”

” - with numeric argument: set the system date & time\n”

” - with ‘reset’ argument: reset the RTC”

);

这里反向分析:

第一步是注冊 date命令

U_BOOT_CMD(

date, 2, 1, do_date,

“get/set/reset date & time”,

“[MMDDhhmm[[CC]YY][.ss]]\ndate reset\n”

” - without arguments: print date & time\n”

” - with numeric argument: set the system date & time\n”

” - with ‘reset’ argument: reset the RTC”

);

这个命令就是rtc的控制命令了 调用的函数是 do_date

int do_date (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])

能够看到这命令是调用了rtc里面注冊的rtc_reset、rtc_get、rtc_set

分为case1 :获取当年的时间

case2 设置时间;

时间转换函数mk_date 能够将我们输入的字符串转化成为时间的年月日 供rtc_set 配置下去去

时间: 2024-12-27 20:43:12

uboot中rtc顶层分析的相关文章

u-boot中网口处理--软件部分

u-boot中DM9000驱动分析 1. CSRs和PHY reg读写. 1 static u16 2 phy_read(int reg) 3 { 4 u16 val; 5 6 /* Fill the phyxcer register into REG_0C */ 7 DM9000_iow(DM9000_EPAR, DM9000_PHY | reg); 8 DM9000_iow(DM9000_EPCR, 0xc); /* Issue phyxcer read command */ 9 udela

为什么要有uboot?带你全面分析嵌入式linux系统启动过程中uboot的作用

1.为什么要有uboot 1.1.计算机系统的主要部件 (1)计算机系统就是以CPU为核心来运行的系统.典型的计算机系统有:PC机(台式机+笔记本).嵌入式设备(手机.平板电脑.游戏机).单片机(家用电器像电饭锅.空调) (2)计算机系统的组成部件非常多,不同的计算机系统组成部件也不同.但是所有的计算机系统运行时需要的主要核心部件都是3个东西: CPU + 外部存储器(Flash/硬盘) + 内部存储器(DDR SDRAM/SDRAM/SRAM) 1.2.PC机的启动过程 (1)部署:典型的PC

tiny4412 串口驱动分析 --- u-boot中的串口驱动

作者:彭东林 邮箱:[email protected] 开发板:tiny4412ADK+S700 4GB Flash 主机:Wind7 64位 虚拟机:Vmware+Ubuntu12_04 u-boot:U-Boot 2010.12 Linux内核版本:linux-3.0.31 Android版本:android-4.1.2 我们以tiny4412为例分析串口驱动,下面我们从u-boot开始分析,然后再分析到Linux. 串口初始化 关于这部分代码流程参考件:tiny4412 u-boot 启动

S5PV210 uboot中的 MMU代码分析

1:经过上一节的分析,如果采用SECTION虚拟地址映射的话: 程序员只需要做的事情: (1) 建立转换表,Tanslation Table: (2) 将TTB(转换表基地址Tanslation Table Base)写入协处理器CP15的C2寄存器,这里要注意转换表 基地址为16K对齐的(因为4096*32bit=16K)所以TTB的bit0-bit13为0. (3) 使能MMU,将CP15的C1寄存器0bit写1: (4) 设置域的访问权限:设置C3寄存器: CPU/MMU做的事情: (1)

uboot中setenv和saveenv分析

转:https://blog.csdn.net/weixin_34355715/article/details/85751477 Env在u-boot中通常有两种存在方式,在永久性存储介质中(flash.NVRAM等),在SDRAM中.可配置不适用env的永久存储方式,但不常用.U-boot在启动时会将存储在永久性存储介质中的env重新定位到RAM中,这样可以快速访问,同时可以通过saveenv将RAM保存到永久性存储介质中. 相关结构体 env_t定义于include/environment.

U-Boot移植之前期分析(上)

老是看别人移植uboot,用别人移植好的uboot,今天终于下定决心自己移植一个uboot来玩玩,好歹我也是个软件开发人员啊. 第一步:去ftp://ftp.denx.de/pub/u-boot/网站下载个uboot工程源码,为了防止环境出问题,我决定用个老一点的,于是就下了:u-boot-1.1.6.tar.bz2. 第二步:解压源码:tar  jxvf  u-boot-1.1.6.tar.bz2. 第三步:建立source insight工程 好了完成以上三步之后,我们需要的前提条件都准备好

U-boot主Makefile详尽分析

U-boot主Makefile详尽分析 主Makefile位于uboot源码的根目录下,其内容主要结构为: 1. 确定版本号及主机信息(23至48行) 2. 实现静默编译功能(48至55行) 3. 设置各种路径(56至123行) 4. 设置编译工具链(124至186行,大部分在config.mk内) 5. 设置规则(187至470行) 6. 设置与cpu相关的伪目标(480至末尾) 需要注意的是,结构顺序不代表代码执行顺序,关于代码的执行顺序以及推荐阅读顺序请移步[ U-boot配置及编译阶段流

U-Boot移植之前期分析(下)

接U-Boot移植之前期分析(上): 2. 顶层目录下mkconfig的分析过程 在上面的分析中知道了语句:"@$(MKCONFIG) $(@:_config=) arm arm920t MY_JZ2440 sumsung s3c24x0"对应于执行顶层目录下的mkconfig文件并传递了六个参数 ($0-$6):100ask24x0 arm arm920t 100ask24x0 NULL s3c24x0.下面分析这句话的到底做了什么事情,具体可以阅读源码,由于比较简单这里直接列出具体

u-boot中的Makefile

在windos下,pc机上电之后,BIOS会初始化硬件配置,为内核传递参数,引导操作系统启动,并且识别C盘.D盘.等整个操作系统启动起来之后,才可以运行应用程序比如QQ.QQ音影.同理,在嵌入式Linux操作系统中,bootloader在上电之后初始化硬件设备,引导Linux内核启动,并且挂在文件系统,等整个操作系统启动之后.运行应用程序.              bootloader其实就是一个单片机程序,一般采用开发的语言是汇编和C语言,但是不同的硬件平台下的boot是不同的.booloa