// SPDX-License-Identifier: GPL-2.0 /* * Dallas Semiconductors 1603 RTC driver * * Brian Murphy <brian@murphy.dk> * */ #include <linux/kernel.h> #include <asm/lasat/lasat.h> #include <linux/delay.h> #include <asm/lasat/ds1603.h> #include <asm/time.h> #include "ds1603.h" #define READ_TIME_CMD 0x81 #define SET_TIME_CMD 0x80 #define TRIMMER_SET_CMD 0xC0 #define TRIMMER_VALUE_MASK 0x38 #define TRIMMER_SHIFT 3 struct ds_defs *ds1603; /* HW specific register functions */
static void rtc_reg_write(unsigned long val) { *ds1603->reg = val; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 17 | 100.00% | 1 | 100.00% |
Total | 17 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 21 | 100.00% | 1 | 100.00% |
Total | 21 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 21 | 100.00% | 1 | 100.00% |
Total | 21 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 18 | 100.00% | 1 | 100.00% |
Total | 18 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 19 | 100.00% | 1 | 100.00% |
Total | 19 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 67 | 100.00% | 1 | 100.00% |
Total | 67 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 65 | 100.00% | 1 | 100.00% |
Total | 65 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 41 | 100.00% | 1 | 100.00% |
Total | 41 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 39 | 100.00% | 1 | 100.00% |
Total | 39 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 39 | 100.00% | 1 | 100.00% |
Total | 39 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 52 | 100.00% | 1 | 100.00% |
Total | 52 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 27 | 100.00% | 1 | 100.00% |
Total | 27 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 16 | 100.00% | 1 | 100.00% |
Total | 16 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 45 | 72.58% | 1 | 33.33% |
Martin Schwidefsky | 16 | 25.81% | 1 | 33.33% |
Ralf Bächle | 1 | 1.61% | 1 | 33.33% |
Total | 62 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 47 | 97.92% | 1 | 50.00% |
Ralf Bächle | 1 | 2.08% | 1 | 50.00% |
Total | 48 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 32 | 100.00% | 1 | 100.00% |
Total | 32 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Brian Murphy | 635 | 97.09% | 1 | 25.00% |
Martin Schwidefsky | 16 | 2.45% | 1 | 25.00% |
Ralf Bächle | 2 | 0.31% | 1 | 25.00% |
Greg Kroah-Hartman | 1 | 0.15% | 1 | 25.00% |
Total | 654 | 100.00% | 4 | 100.00% |