Home
last modified time | relevance | path

Searched refs:keys (Results 1 – 25 of 126) sorted by relevance

123456

/rk3399_rockchip-uboot/board/lg/sniper/
H A Dsniper.c96 unsigned char keys[3]; in misc_init_r() local
108 keys[0] = twl4030_keypad_key((unsigned char *)&keypad_matrix, 0, 0); in misc_init_r()
109 keys[1] = twl4030_keypad_key((unsigned char *)&keypad_matrix, 0, 1); in misc_init_r()
110 keys[2] = twl4030_keypad_key((unsigned char *)&keypad_matrix, 0, 2); in misc_init_r()
116 if (keys[0]) in misc_init_r()
118 else if (keys[1]) in misc_init_r()
/rk3399_rockchip-uboot/drivers/input/
H A Dcros_ec_keyb.c45 static int check_for_keys(struct udevice *dev, struct key_matrix_key *keys, in check_for_keys() argument
78 key = keys + num_keys++; in check_for_keys()
105 struct key_matrix_key keys[KBC_MAX_KEYS]; in cros_ec_kbc_check() local
123 num_keys = check_for_keys(dev, keys, KBC_MAX_KEYS, in cros_ec_kbc_check()
128 memcpy(last_keys, keys, sizeof(keys)); in cros_ec_kbc_check()
135 memcpy(keys, last_keys, sizeof(keys)); in cros_ec_kbc_check()
140 num_keycodes = key_matrix_decode(&priv->matrix, keys, in cros_ec_kbc_check()
H A Dkey_matrix.c27 static int has_ghosting(struct key_matrix *config, struct key_matrix_key *keys, in has_ghosting() argument
42 if (keys[j].col == keys[i].col) in has_ghosting()
44 if (keys[j].row == keys[i].row) in has_ghosting()
55 int key_matrix_decode(struct key_matrix *config, struct key_matrix_key keys[], in key_matrix_decode() argument
65 struct key_matrix_key *key = &keys[upto]; in key_matrix_decode()
82 if (has_ghosting(config, keys, valid)) { in key_matrix_decode()
H A DKconfig67 then decoded into keys by this driver.
75 then decoded into keys by this driver.
83 then decoded into keys by this driver.
103 bool "Enable adc keys support"
106 This adds a driver for the adc keys support.
109 bool "Enable SPL adc keys support without DM"
112 This adds a driver for the SPL adc keys support
115 bool "Enable gpio keys support"
118 This adds a driver for the gpio keys support.
121 bool "Enable rk keys support"
[all …]
/rk3399_rockchip-uboot/lib/avb/libavb_atx/
H A DKconfig6 verify vbmeta public keys.
13 verify vbmeta public keys.
20 verify vbmeta public keys.
/rk3399_rockchip-uboot/arch/arm/dts/
H A Drv1103b-evb1.dts16 adc-keys {
17 compatible = "adc-keys";
H A Drk3562-evb.dts16 adc-keys {
17 compatible = "adc-keys";
H A Drk3506-evb.dts16 adc-keys {
17 compatible = "adc-keys";
H A Drk3528-evb.dts16 adc-keys {
17 compatible = "adc-keys";
H A Drk3576-evb.dts15 adc-keys {
16 compatible = "adc-keys";
H A Drk3588-evb.dts16 adc-keys {
17 compatible = "adc-keys";
H A Drv1126b-evb.dts15 adc-keys {
16 compatible = "adc-keys";
H A Drv1106-evb.dts16 adc-keys {
17 compatible = "adc-keys";
H A Drv1126-evb.dts15 adc-keys {
16 compatible = "adc-keys";
H A Drk3368-evb.dts16 adc-keys {
17 compatible = "adc-keys";
H A Drk3288-evb.dts15 adc-keys {
16 compatible = "adc-keys";
H A Dpx3se-evb.dts21 adc-keys {
22 compatible = "adc-keys";
H A Drv1126-bat-evb.dts20 adc-keys {
21 compatible = "adc-keys";
H A Drv1106b-evb2.dts25 adc-keys {
26 compatible = "adc-keys";
H A Drk3126-evb.dts27 adc-keys {
28 compatible = "adc-keys";
/rk3399_rockchip-uboot/scripts/kconfig/
H A Dmconf.c290 int *keys, int *vscroll, int *hscroll,
361 int *keys; member
378 data->keys[k] = key; in update_text()
388 data->keys[k] = 0; in update_text()
436 int keys[JUMP_NB + 1], i; in search_conf() local
440 .keys = keys, in search_conf()
447 str_get(&res), 0, 0, keys, &vscroll, in search_conf()
451 for (i = 0; i < JUMP_NB && keys[i]; i++) in search_conf()
452 if (dres == keys[i]) { in search_conf()
757 *keys, int *vscroll, int *hscroll, update_text_fn in show_textbox_ext() argument
[all …]
/rk3399_rockchip-uboot/board/samsung/common/
H A Dmisc.c170 int keys = 0; in check_keys() local
173 keys += KEY_POWER; in check_keys()
175 keys += KEY_VOLUMEUP; in check_keys()
177 keys += KEY_VOLUMEDOWN; in check_keys()
179 return keys; in check_keys()
/rk3399_rockchip-uboot/board/nokia/rx51/
H A Drx51.c512 static u8 keys[8]; variable
620 TWL4030_KEYPAD_FULL_CODE_7_0, 1, keys, 8); in rx51_kp_tstc()
623 mods = keys[4] >> 4; in rx51_kp_tstc()
624 keys[4] &= 0x0f; in rx51_kp_tstc()
629 dk = ((keys[c] ^ old_keys[c])&keys[c]); in rx51_kp_tstc()
630 old_keys[c] = keys[c]; in rx51_kp_tstc()
/rk3399_rockchip-uboot/doc/
H A DREADME.serial_multi13 *) The default console depends on the keys pressed:
14 - SMC if keys not pressed (modem not enabled)
15 - SCC if keys pressed (modem enabled)
H A DREADME.esbc_validate34 keys and revoke any key in case of particular key gets compromised.
39 This feature allows large number of keys to be used for esbc validation
40 of images. A set of public keys is being signed and validated by ISBC

123456