Home
last modified time | relevance | path

Searched +full:0 +full:xc1 (Results 1 – 25 of 901) sorted by relevance

12345678910>>...37

/openbmc/u-boot/lib/
H A Dtpm-v1.c31 static struct session_data oiap_session = {0, };
38 0x0, 0xc1, 0x0, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x99, 0x0, 0x0, in tpm1_startup()
44 0, command, sizeof(command), in tpm1_startup()
59 0x0, 0xc1, 0x0, 0x0, 0x0, 0xa, 0x0, 0x0, 0x0, 0x50, in tpm1_self_test_full()
67 0x0, 0xc1, 0x0, 0x0, 0x0, 0xa, 0x0, 0x0, 0x0, 0x53, in tpm1_continue_self_test()
89 ret = tpm1_physical_set_deactivated(dev, 0); in tpm1_clear_and_reenable()
101 0x0, 0xc1, /* TPM_TAG */ in tpm1_nv_define_space()
102 0x0, 0x0, 0x0, 0x65, /* parameter size */ in tpm1_nv_define_space()
103 0x0, 0x0, 0x0, 0xcc, /* TPM_COMMAND_CODE */ in tpm1_nv_define_space()
105 0x0, 0x18, /* ...->TPM_STRUCTURE_TAG */ in tpm1_nv_define_space()
[all …]
/openbmc/linux/arch/s390/crypto/
H A Dchacha-s390.S20 .long 0x61707865,0x3320646e,0x79622d32,0x6b206574 # endian-neutral
21 .long 1,0,0,0
22 .long 2,0,0,0
23 .long 3,0,0,0
24 .long 0x03020100,0x07060504,0x0b0a0908,0x0f0e0d0c # byte swap
26 .long 0,1,2,3
27 .long 0x61707865,0x61707865,0x61707865,0x61707865 # smashed sigma
28 .long 0x3320646e,0x3320646e,0x3320646e,0x3320646e
29 .long 0x79622d32,0x79622d32,0x79622d32,0x79622d32
30 .long 0x6b206574,0x6b206574,0x6b206574,0x6b206574
[all …]
/openbmc/linux/drivers/gpu/drm/panel/
H A Dpanel-samsung-s6e8aa0.c34 #define PANELCTL_SS_1_800 (0 << 5)
41 #define PANELCTL_CLK1_000 (0 << 3)
43 #define PANELCTL_CLK2_CON_MASK (7 << 0)
44 #define PANELCTL_CLK2_000 (0 << 0)
45 #define PANELCTL_CLK2_001 (1 << 0)
48 #define PANELCTL_INT1_000 (0 << 3)
50 #define PANELCTL_INT2_CON_MASK (7 << 0)
51 #define PANELCTL_INT2_000 (0 << 0)
52 #define PANELCTL_INT2_001 (1 << 0)
55 #define PANELCTL_BICTL_000 (0 << 3)
[all …]
H A Dpanel-boe-himax8279d.c62 gpiod_set_value(pinfo->enable_gpio, 0); in disable_gpios()
63 gpiod_set_value(pinfo->pp33_gpio, 0); in disable_gpios()
64 gpiod_set_value(pinfo->pp18_gpio, 0); in disable_gpios()
70 unsigned int i = 0; in send_mipi_cmds()
73 for (i = 0; i < pinfo->desc->on_cmds_num; i++) { in send_mipi_cmds()
77 if (err < 0) in send_mipi_cmds()
81 return 0; in send_mipi_cmds()
90 return 0; in boe_panel_disable()
93 if (err < 0) { in boe_panel_disable()
100 return 0; in boe_panel_disable()
[all …]
/openbmc/linux/crypto/
H A Dtestmgr.h33 * @ksize: Length of @key in bytes (0 if no key)
103 * @crypt_error: When @novrfy=0, the expected error from encrypt(). When
224 "\x5e\x32\x39\x6d\xc1\x1d\x7d\x50\x3b\x9f\x7a\xad\xf0\x2e\x25\x53"
240 "\x4E\xE0\xAA\xB1\x2D\x7B\x61\xA5\x1F\x52\x7A\x9A\x41\xF6\xC1\x68"
245 "\x00\xA5\xDA\xFC\x53\x41\xFA\xF2\x89\xC4\xB9\x88\xDB\x30\xC1\xCD"
253 "\xC1"
269 "\xD9\x49\x09\x75\xEA\xB7\x74\x14\xFF\x59\xC1\xF7\x69\x2E\x9A\x2E"
292 "\x13\xb4\xc1\xa1\x11\xfc\x40\x2f\x4c\x9d\xdf\x16\x76\x11\x20\x6b",
303 "\xC6\x67\xFF\x1D\x1E\x3C\x1D\xC1\xB5\x5F\x6C\xC0\xB2\x07\x3A\x6D"
320 "\x93\x6C\xCC\x9D\xC1\xB2\xFB\xFD\xAE\x40\x31\xAC\x69\x52\x21\x92"
[all …]
H A Ddh.c27 memset(ctx, 0, sizeof(*ctx)); in dh_clear_ctx()
50 return (p_len < 2048) ? -EINVAL : 0; in dh_check_params_length()
52 return (p_len < 1536) ? -EINVAL : 0; in dh_check_params_length()
68 return 0; in dh_set_params()
80 if (crypto_dh_decode_key(buf, len, &params) < 0) in dh_set_secret()
83 if (dh_set_params(ctx, &params) < 0) in dh_set_secret()
90 return 0; in dh_set_secret()
120 if (mpi_cmp_ui(y, 1) < 1 || mpi_cmp(y, ctx->p) >= 0) in dh_is_pubkey_valid()
132 val = mpi_alloc(0); in dh_is_pubkey_valid()
159 if (ret != 0) in dh_is_pubkey_valid()
[all …]
/openbmc/linux/tools/perf/pmu-events/arch/x86/cascadelakex/
H A Duncore-io.json4 "EventCode": "0x83",
6 "FCMask": "0x07",
7 "Filter": "ch_mask=0x1f",
11 "PortMask": "0x01",
12 … device attached to the IIO unit which starts its use of the bus using lane 0 of the 16 lanes supp…
14 "UMask": "0x4",
19 "EventCode": "0x83",
21 "FCMask": "0x07",
22 "Filter": "ch_mask=0x1f",
26 "PortMask": "0x01",
[all …]
/openbmc/linux/tools/perf/pmu-events/arch/x86/skylakex/
H A Duncore-io.json4 "EventCode": "0x83",
6 "FCMask": "0x07",
7 "Filter": "ch_mask=0x1f",
11 "PortMask": "0x01",
12 … device attached to the IIO unit which starts its use of the bus using lane 0 of the 16 lanes supp…
14 "UMask": "0x4",
19 "EventCode": "0x83",
21 "FCMask": "0x07",
22 "Filter": "ch_mask=0x1f",
26 "PortMask": "0x01",
[all …]
/openbmc/u-boot/drivers/video/
H A Ds6e8ax0.c19 0xf8, 0x3d, 0x35, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x4c, in s6e8ax0_panel_cond()
20 0x6e, 0x10, 0x27, 0x7d, 0x3f, 0x10, 0x00, 0x00, 0x20, in s6e8ax0_panel_cond()
21 0x04, 0x08, 0x6e, 0x00, 0x00, 0x00, 0x02, 0x08, 0x08, in s6e8ax0_panel_cond()
22 0x23, 0x23, 0xc0, 0xc8, 0x08, 0x48, 0xc1, 0x00, 0xc3, in s6e8ax0_panel_cond()
23 0xff, 0xff, 0xc8 in s6e8ax0_panel_cond()
27 0xf8, 0x19, 0x35, 0x00, 0x00, 0x00, 0x93, 0x00, 0x3c, in s6e8ax0_panel_cond()
28 0x7d, 0x08, 0x27, 0x7d, 0x3f, 0x00, 0x00, 0x00, 0x20, in s6e8ax0_panel_cond()
29 0x04, 0x08, 0x6e, 0x00, 0x00, 0x00, 0x02, 0x08, 0x08, in s6e8ax0_panel_cond()
30 0x23, 0x23, 0xc0, 0xc1, 0x01, 0x41, 0xc1, 0x00, 0xc1, in s6e8ax0_panel_cond()
31 0xf6, 0xf6, 0xc1 in s6e8ax0_panel_cond()
[all …]
/openbmc/u-boot/arch/arm/dts/
H A Dfsl-imx8mq-evk.dts9 /memreserve/ 0x40000000 0x00020000;
18 bootargs = "console=ttymxc0,115200 earlycon=ec_imx6q,0x30860000,115200";
24 #size-cells = <0>;
41 pwms = <&pwm2 0 50000>;
53 MX8MQ_IOMUXC_ENET_MDC_ENET1_MDC 0x3
54 MX8MQ_IOMUXC_ENET_MDIO_ENET1_MDIO 0x23
55 MX8MQ_IOMUXC_ENET_TD3_ENET1_RGMII_TD3 0x1f
56 MX8MQ_IOMUXC_ENET_TD2_ENET1_RGMII_TD2 0x1f
57 MX8MQ_IOMUXC_ENET_TD1_ENET1_RGMII_TD1 0x1f
58 MX8MQ_IOMUXC_ENET_TD0_ENET1_RGMII_TD0 0x1f
[all …]
/openbmc/qemu/tests/unit/
H A Dtest-crypto-der.c27 "\x30\x82\x01\x39" /* SEQUENCE, offset: 0, length: 313 */
37 "\x1e\x80\xfe\xda\x65\xdb\x70\xb8\x61\x91\x28\xbf\x6c\x32\xc1\x05"
40 "\x2e\x6c\xc8\x70\x8a\x17\xc1\x28\x6a\xfe\x51\x56\xb3\x92\x6f\x09"
42 "\x00\xe3\x2e\x2d\x8d\xba\x1c\x34\x4c\x49\x9f\xc1\xa6\xdd\xd7\x13"
60 "\x30\x82\x04\xa6" /* SEQUENCE, offset: 0, length 1190 */
63 "\x00\xd1\x48\xc2\xc1\x1d\x4f\x94\xf2\xbb\x9b\xe2\x2d\xe1\xea\x4c"
82 "\x00\x8d\x21\x97\x0c\x29\x9a\xf8\x23\xf4\x76\x3b\xc1\x9b\x3e\xa8"
89 "\xc1\xab\xc5\xc7\x7f\x6d\xb0\xe3\xca\xef\xf6\xf2\xc7\xae\x09\xbf"
93 "\x88\x19\xed\x35\xd3\x7e\x5e\xac\x51\xc1\x1e\x5e\x2c\x57\x72\x20"
111 "\xfe\xd7\x25\x1b\xc1\x4a\xff\x37\x44\x2b\x46\xa0\xdf\xe8\x02\x09"
[all …]
/openbmc/linux/tools/perf/pmu-events/arch/x86/sandybridge/
H A Dfloating-point.json5 "EventCode": "0xCA",
8 "UMask": "0x1e"
12 "EventCode": "0xCA",
15 "UMask": "0x10"
19 "EventCode": "0xCA",
22 "UMask": "0x8"
26 "EventCode": "0xCA",
29 "UMask": "0x4"
33 "EventCode": "0xCA",
36 "UMask": "0x2"
[all …]
/openbmc/linux/tools/perf/pmu-events/arch/x86/jaketown/
H A Dfloating-point.json5 "EventCode": "0xCA",
8 "UMask": "0x1e"
12 "EventCode": "0xCA",
15 "UMask": "0x10"
19 "EventCode": "0xCA",
22 "UMask": "0x8"
26 "EventCode": "0xCA",
29 "UMask": "0x4"
33 "EventCode": "0xCA",
36 "UMask": "0x2"
[all …]
/openbmc/linux/arch/arm64/boot/dts/freescale/
H A Dimx8mq-phanbell.dts21 reg = <0x00000000 0x40000000 0 0x40000000>;
26 #clock-cells = <0>;
42 gpio-fan,speed-map = <0 0 8600 1>;
46 pinctrl-0 = <&pinctrl_gpio_fan>;
98 <&A53_0 0 1>; /* Exclude highest OPP */
104 <&A53_0 0 2>; /* Exclude two highest OPPs */
109 cooling-device = <&fan 0 1>;
117 pinctrl-0 = <&pinctrl_i2c1>;
122 reg = <0x4b>;
124 pinctrl-0 = <&pinctrl_pmic>;
[all …]
H A Dimx8mq-kontron-pitx-imx8m.dts36 #clock-cells = <0>;
42 #clock-cells = <0>;
49 pinctrl-0 = <&pinctrl_reg_usdhc2>;
61 #size-cells = <0>;
63 pinctrl-0 = <&pinctrl_ecspi2 &pinctrl_ecspi2_cs>;
67 tpm@0 {
69 reg = <0>;
76 pinctrl-0 = <&pinctrl_fec1>;
84 #size-cells = <0>;
86 ethphy0: ethernet-phy@0 {
[all …]
H A Dimx8mq-hummingboard-pulse.dts22 pinctrl-0 = <&pinctrl_usdhc2_vmmc>;
40 pinctrl-0 = <&pinctrl_i2c2>;
46 reg = <0x50>;
48 pinctrl-0 = <&pinctrl_typec>;
83 pinctrl-0 = <&pinctrl_i2c3>;
89 reg = <0x57>;
95 reg = <0x69>;
103 pinctrl-0 = <&pinctrl_uart2>;
111 pinctrl-0 = <&pinctrl_uart3>;
122 pinctrl-0 = <&pinctrl_usdhc2>, <&pinctrl_usdhc2_gpio>;
[all …]
/openbmc/linux/drivers/media/usb/gspca/gl860/
H A Dgl860-ov9655.c12 {0x0000, 0x0000}, {0x0010, 0x0010}, {0x0008, 0x00c0}, {0x0001, 0x00c1},
13 {0x0001, 0x00c2}, {0x0020, 0x0006}, {0x006a, 0x000d},
15 {0x0040, 0x0000},
19 {0x0041, 0x0000}, {0x006a, 0x0007}, {0x0063, 0x0006}, {0x006a, 0x000d},
20 {0x0000, 0x00c0}, {0x0010, 0x0010}, {0x0001, 0x00c1}, {0x0041, 0x00c2},
21 {0x0004, 0x00d8}, {0x0012, 0x0004}, {0x0000, 0x0058}, {0x0040, 0x0000},
22 {0x00f3, 0x0006}, {0x0058, 0x0000}, {0x0048, 0x0000}, {0x0061, 0x0000},
29 0x00, 0x40, 0x07, 0x6a, 0x06, 0xf3, 0x0d, 0x6a,
30 0x10, 0x10, 0xc1, 0x01
32 0x12, 0x80, 0x00, 0x00, 0x01, 0x98, 0x02, 0x80,
[all …]
/openbmc/qemu/hw/arm/
H A Daspeed_eeprom.c12 0x01, 0x00, 0x00, 0x01, 0x0d, 0x00, 0x00, 0xf1, 0x01, 0x0c, 0x00, 0x36,
13 0xe6, 0xd0, 0xc6, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0xd2, 0x42, 0x4d,
14 0x43, 0x20, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x20, 0x4d, 0x6f,
15 0x64, 0x75, 0x6c, 0x65, 0xcd, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58,
16 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0xce, 0x58, 0x58, 0x58, 0x58, 0x58,
17 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0xc3, 0x31, 0x2e,
18 0x30, 0xc9, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0xd2,
19 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58,
20 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0xc1, 0x39, 0x01, 0x0c, 0x00, 0xc6,
21 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0xd2, 0x54, 0x69, 0x6f, 0x67, 0x61,
[all …]
/openbmc/linux/drivers/media/usb/gspca/
H A Dspca505.c23 #define IntelPCCameraPro 0
52 .priv = 0},
57 #define SPCA50X_REG_USB 0x02 /* spca505 501 */
59 #define SPCA50X_USB_CTRL 0x00 /* spca505 */
60 #define SPCA50X_CUSB_ENABLE 0x01 /* spca505 */
62 #define SPCA50X_REG_GLOBAL 0x03 /* spca505 */
63 #define SPCA50X_GMISC0_IDSEL 0x01 /* Global control device ID select spca505 */
64 #define SPCA50X_GLOBAL_MISC0 0x00 /* Global control miscellaneous 0 spca505 */
66 #define SPCA50X_GLOBAL_MISC1 0x01 /* 505 */
67 #define SPCA50X_GLOBAL_MISC3 0x03 /* 505 */
[all …]
/openbmc/linux/lib/crypto/
H A Daesgcm.c43 * Returns: 0 on success, or -EINVAL if @keysize or @authsize contain values
60 return 0; in aesgcm_expandkey()
67 while (len > 0) { in aesgcm_ghash()
101 while (len > 0) { in aesgcm_crypt()
221 "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
243 "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
276 "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
304 "\x52\x2d\xc1\xf0\x99\x56\x7d\x07"
326 "\x52\x2d\xc1\xf0\x99\x56\x7d\x07"
352 "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
[all …]
/openbmc/linux/crypto/asymmetric_keys/
H A Dselftest.c42 "\xe0\xc3\xc1\x79\xc2\xb3\xeb\xc0\x1e\x6d\x3e\x54\x1d\xbd\xb7\x92"
66 "\x9e\x3b\x36\x66\x42\x66\x76\x35\xbf\xbe\xf0\xc1\x3c\x7c\xe9\x42"
87 "\xd4\xdf\xa6\xbb\xe8\x4d\x1b\x58\xaa\x28\xfa\xc1\x19\xeb\x11\x2f"
100 "\x8c\x24\x6c\xbf\x0f\x5d\x37\x39\xcf\x45\xc1\x93\x3a\xd2\xed\x5c"
142 "\x89\xee\xd3\xc8\xc1\xe7\xa7\xf6\xb2\xa2\xf8\x65\xb8\x35\x20\x33"
150 "\x22\x66\xc5\x3b\xc1\xba\xfc\x53\x18\x98\xe2\x21\x64\xc6\x52\x87"
157 "\xf0\x6c\x84\x29\x7f\x7f\x04\x46\xcb\x08\x0f\xe0\xc1\xc9\x70\x6e"
199 if (ret < 0) in fips_signature_selftest()
202 for (i = 0; i < ARRAY_SIZE(certs_tests); i++) { in fips_signature_selftest()
213 if (ret < 0) in fips_signature_selftest()
[all …]
/openbmc/linux/drivers/staging/fbtft/
H A Dfb_ili9340.c25 write_reg(par, 0xEF, 0x03, 0x80, 0x02); in init_display()
26 write_reg(par, 0xCF, 0x00, 0XC1, 0X30); in init_display()
27 write_reg(par, 0xED, 0x64, 0x03, 0X12, 0X81); in init_display()
28 write_reg(par, 0xE8, 0x85, 0x00, 0x78); in init_display()
29 write_reg(par, 0xCB, 0x39, 0x2C, 0x00, 0x34, 0x02); in init_display()
30 write_reg(par, 0xF7, 0x20); in init_display()
31 write_reg(par, 0xEA, 0x00, 0x00); in init_display()
34 write_reg(par, 0xC0, 0x23); in init_display()
37 write_reg(par, 0xC1, 0x10); in init_display()
40 write_reg(par, 0xC5, 0x3e, 0x28); in init_display()
[all …]
/openbmc/linux/tools/perf/pmu-events/arch/x86/ivybridge/
H A Dfloating-point.json5 "EventCode": "0xCA",
9 "UMask": "0x1e"
13 "EventCode": "0xCA",
17 "UMask": "0x10"
21 "EventCode": "0xCA",
25 "UMask": "0x8"
29 "EventCode": "0xCA",
33 "UMask": "0x4"
37 "EventCode": "0xCA",
41 "UMask": "0x2"
[all …]
/openbmc/linux/tools/perf/pmu-events/arch/x86/ivytown/
H A Dfloating-point.json5 "EventCode": "0xCA",
9 "UMask": "0x1e"
13 "EventCode": "0xCA",
17 "UMask": "0x10"
21 "EventCode": "0xCA",
25 "UMask": "0x8"
29 "EventCode": "0xCA",
33 "UMask": "0x4"
37 "EventCode": "0xCA",
41 "UMask": "0x2"
[all …]
/openbmc/linux/drivers/platform/x86/
H A Dmsi-ec.c50 .address = 0xef,
51 .offset_start = 0x8a,
52 .offset_end = 0x80,
53 .range_min = 0x8a,
54 .range_max = 0xe4,
57 .address = 0x2e,
58 .block_address = 0x2f,
62 .address = 0xbf,
66 .address = 0x98,
70 .address = 0xf2,
[all …]

12345678910>>...37