u-boot-brain/drivers/rtc/mvrtc.h
Tom Rini 83d290c56f SPDX: Convert all of our single license tags to Linux Kernel style
When U-Boot started using SPDX tags we were among the early adopters and
there weren't a lot of other examples to borrow from.  So we picked the
area of the file that usually had a full license text and replaced it
with an appropriate SPDX-License-Identifier: entry.  Since then, the
Linux Kernel has adopted SPDX tags and they place it as the very first
line in a file (except where shebangs are used, then it's second line)
and with slightly different comment styles than us.

In part due to community overlap, in part due to better tag visibility
and in part for other minor reasons, switch over to that style.

This commit changes all instances where we have a single declared
license in the tag as both the before and after are identical in tag
contents.  There's also a few places where I found we did not have a tag
and have introduced one.

Signed-off-by: Tom Rini <trini@konsulko.com>
2018-05-07 09:34:12 -04:00

49 lines
868 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Copyright (C) 2011
* Jason Cooper <u-boot@lakedaemon.net>
*/
/*
* Date & Time support for Marvell Integrated RTC
*/
#ifndef _MVRTC_H_
#define _MVRTC_H_
#include <asm/arch/soc.h>
#include <linux/compiler.h>
/* RTC registers */
struct mvrtc_registers {
u32 time;
u32 date;
};
/* time register */
#define MVRTC_SEC_SFT 0
#define MVRTC_SEC_MSK 0x7f
#define MVRTC_MIN_SFT 8
#define MVRTC_MIN_MSK 0x7f
#define MVRTC_HOUR_SFT 16
#define MVRTC_HOUR_MSK 0x3f
#define MVRTC_DAY_SFT 24
#define MVRTC_DAY_MSK 0x7
/*
* Hour format bit
* 1 = 12 hour clock
* 0 = 24 hour clock
*/
#define MVRTC_HRFMT_MSK 0x00400000
/* date register */
#define MVRTC_DATE_SFT 0
#define MVRTC_DATE_MSK 0x3f
#define MVRTC_MON_SFT 8
#define MVRTC_MON_MSK 0x1f
#define MVRTC_YEAR_SFT 16
#define MVRTC_YEAR_MSK 0xff
#endif