/* * 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. */ #include <linux/kernel.h> #include <linux/init.h> #include <linux/module.h> #include <linux/types.h> #include <linux/device.h> #include <linux/string.h> #include <linux/slab.h> #include <linux/fs.h> #include <linux/platform_device.h> #include <linux/of.h> #include <linux/of_address.h> #include <linux/firmware.h> #include <linux/io.h> #include "io.h" static inline void byte0_out(unsigned char data); static inline void byte1_out(unsigned char data); static inline void xl_cclk_b(int32_t i); /* Assert and Deassert CCLK */
void xl_shift_cclk(int count) { int i; for (i = 0; i < count; i++) { xl_cclk_b(1); xl_cclk_b(0); } }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Insop Song | 36 | 100.00% | 1 | 100.00% |
Total | 36 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Insop Song | 37 | 100.00% | 1 | 100.00% |
Total | 37 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Insop Song | 45 | 100.00% | 1 | 100.00% |
Total | 45 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Insop Song | 4 | 57.14% | 1 | 50.00% |
Paul Bolle | 3 | 42.86% | 1 | 50.00% |
Total | 7 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Insop Song | 4 | 57.14% | 1 | 50.00% |
Paul Bolle | 3 | 42.86% | 1 | 50.00% |
Total | 7 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Insop Song | 4 | 57.14% | 1 | 50.00% |
Paul Bolle | 3 | 42.86% | 1 | 50.00% |
Total | 7 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Insop Song | 6 | 54.55% | 1 | 50.00% |
Paul Bolle | 5 | 45.45% | 1 | 50.00% |
Total | 11 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Insop Song | 7 | 63.64% | 1 | 50.00% |
Paul Bolle | 4 | 36.36% | 1 | 50.00% |
Total | 11 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Insop Song | 5 | 50.00% | 1 | 50.00% |
Paul Bolle | 5 | 50.00% | 1 | 50.00% |
Total | 10 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Paul Bolle | 7 | 70.00% | 1 | 50.00% |
Insop Song | 3 | 30.00% | 1 | 50.00% |
Total | 10 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Insop Song | 5 | 55.56% | 1 | 50.00% |
Paul Bolle | 4 | 44.44% | 1 | 50.00% |
Total | 9 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Insop Song | 8 | 72.73% | 1 | 50.00% |
Paul Bolle | 3 | 27.27% | 1 | 50.00% |
Total | 11 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Insop Song | 238 | 85.92% | 1 | 33.33% |
Paul Bolle | 38 | 13.72% | 1 | 33.33% |
Jacob von Chorus | 1 | 0.36% | 1 | 33.33% |
Total | 277 | 100.00% | 3 | 100.00% |