aboutsummaryrefslogtreecommitdiffstats
path: root/tmk_core/common/matrix.h
blob: 2543f5abce79af9cb7f8eef8ac99096a401fd030 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
Copyright 2011 Jun Wako <wakojun@gmail.com>

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, see <http://www.gnu.org/licenses/>.
*/
#ifndef MATRIX_H
#define MATRIX_H

#include <stdint.h>
#include <stdbool.h>


#if (MATRIX_COLS <= 8)
typedef  uint8_t    matrix_row_t;
#elif (MATRIX_COLS <= 16)
typedef  uint16_t   matrix_row_t;
#elif (MATRIX_COLS <= 32)
typedef  uint32_t   matrix_row_t;
#else
#error "MATRIX_COLS: invalid value"
#endif

#define MATRIX_IS_ON(row, col)  (matrix_get_row(row) && (1<<col))


#ifdef __cplusplus
extern "C" {
#endif

/* number of matrix rows */
uint8_t matrix_rows(void);
/* number of matrix columns */
uint8_t matrix_cols(void);
/* should be called at early stage of startup before matrix_init.(optional) */
void matrix_setup(void);
/* intialize matrix for scaning. */
void matrix_init(void);
/* scan all key states on matrix */
uint8_t matrix_scan(void);
/* whether modified from previous scan. used after matrix_scan. */
bool matrix_is_modified(void) __attribute__ ((deprecated));
/* whether a switch is on */
bool matrix_is_on(uint8_t row, uint8_t col);
/* matrix state on row */
matrix_row_t matrix_get_row(uint8_t row);
/* print matrix for debug */
void matrix_print(void);


/* power control */
void matrix_power_up(void);
void matrix_power_down(void);

/* executes code for Quantum */
void matrix_init_quantum(void);
void matrix_scan_quantum(void);

void matrix_init_kb(void);
void matrix_scan_kb(void);

void matrix_init_user(void);
void matrix_scan_user(void);

#ifdef I2C_SPLIT
	void slave_matrix_init(void);
	uint8_t slave_matrix_scan(void);
#endif

#ifdef __cplusplus
}
#endif

#endif
ss="nf">partition@30000 { label = "uboot-env"; reg = <0x30000 0x4000>; read-only; }; factory: partition@34000 { label = "factory"; reg = <0x34000 0x4000>; read-only; }; partition@38000 { label = "nvram"; reg = <0x38000 0x8000>; read-only; }; partition@40000 { label = "devdata"; reg = <0x40000 0x10000>; }; partition@50000 { label = "firmware"; reg = <0x50000 0x7b0000>; }; }; }; rtl8367 { compatible = "realtek,rtl8367"; gpio-sda = <&gpio0 1 GPIO_ACTIVE_HIGH>; gpio-sck = <&gpio0 2 GPIO_ACTIVE_HIGH>; realtek,extif0 = <1 0 1 1 1 1 1 1 2>; }; gpio-keys-polled { compatible = "gpio-keys-polled"; poll-interval = <100>; reset { label = "reset"; gpios = <&gpio0 6 GPIO_ACTIVE_LOW>; linux,code = <KEY_RESTART>; }; wps { label = "wps"; gpios = <&gpio0 3 GPIO_ACTIVE_LOW>; linux,code = <KEY_WPS_BUTTON>; }; }; gpio-leds { compatible = "gpio-leds"; led_wps: wps { label = "cy-swr1100:blue:wps"; gpios = <&gpio0 0 GPIO_ACTIVE_LOW>; }; usb { label = "cy-swr1100:blue:usb"; gpios = <&gpio1 1 GPIO_ACTIVE_LOW>; trigger-sources = <&ohci_port1>, <&ehci_port1>; linux,default-trigger = "usbport"; }; }; }; &gpio1 { status = "okay"; }; &pinctrl { state_default: pinctrl0 { gpio { ralink,group = "i2c", "spi"; ralink,function = "gpio"; }; }; }; &ethernet { port@0 { mediatek,fixed-link = <1000 1 1 1>; phy-mode = "rgmii"; }; }; &pci { status = "okay"; }; &pci1 { status = "okay"; wifi@0,0 { compatible = "pci0,0"; reg = <0x10000 0 0 0 0>; ralink,5ghz = <0>; ralink,mtd-eeprom = <&factory 0x2000>; }; }; &wmac { status = "okay"; ralink,2ghz = <0>; ralink,mtd-eeprom = <&factory 0>; }; &ehci { status = "okay"; }; &ohci { status = "okay"; };