Home
last modified time | relevance | path

Searched full:primary (Results 1 – 25 of 2998) sorted by relevance

12345678910>>...120

/OK3568_Linux_fs/kernel/drivers/mfd/
H A Dwm8350-irq.c35 int primary; member
43 .primary = WM8350_OC_INT,
49 .primary = WM8350_UV_INT,
54 .primary = WM8350_UV_INT,
59 .primary = WM8350_UV_INT,
64 .primary = WM8350_UV_INT,
69 .primary = WM8350_UV_INT,
74 .primary = WM8350_UV_INT,
79 .primary = WM8350_UV_INT,
84 .primary = WM8350_UV_INT,
[all …]
H A Dwm831x-irq.c26 int primary; member
33 .primary = WM831X_TEMP_INT,
38 .primary = WM831X_GP_INT,
43 .primary = WM831X_GP_INT,
48 .primary = WM831X_GP_INT,
53 .primary = WM831X_GP_INT,
58 .primary = WM831X_GP_INT,
63 .primary = WM831X_GP_INT,
68 .primary = WM831X_GP_INT,
73 .primary = WM831X_GP_INT,
[all …]
/OK3568_Linux_fs/kernel/sound/soc/intel/skylake/
H A Dskl-sst-ipc.c92 /* Module operations primary register */
305 header->primary | SKL_ADSP_REG_HIPCI_BUSY); in skl_ipc_tx_msg()
333 header->primary); in skl_ipc_reply_get_msg()
350 if (IPC_GLB_NOTIFY_MSG_TYPE(header.primary)) { in skl_ipc_process_notification()
351 switch (IPC_GLB_NOTIFY_TYPE(header.primary)) { in skl_ipc_process_notification()
354 dev_err(ipc->dev, "FW Underrun %x\n", header.primary); in skl_ipc_process_notification()
359 header.primary); in skl_ipc_process_notification()
382 header.primary); in skl_ipc_process_notification()
437 u32 reply = header.primary & IPC_GLB_REPLY_STATUS_MASK; in skl_ipc_process_reply()
453 dev_dbg(ipc->dev, "ipc FW reply %x: success\n", header.primary); in skl_ipc_process_reply()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-support/curl/curl/
H A DCVE-2022-27782-1.patch33 + data->set.ssl.primary.ssl_options = (unsigned char)(arg & 0xff);
41 + data->set.proxy_ssl.primary.ssl_options = (unsigned char)(arg & 0xff);
52 + !data->set.ssl.primary.authtype)
53 + data->set.ssl.primary.authtype = CURL_TLSAUTH_SRP; /* default to SRP */
62 + !data->set.proxy_ssl.primary.authtype)
63 + data->set.proxy_ssl.primary.authtype = CURL_TLSAUTH_SRP; /* default to
73 + !data->set.ssl.primary.authtype)
74 + data->set.ssl.primary.authtype = CURL_TLSAUTH_SRP; /* default */
83 + !data->set.proxy_ssl.primary.authtype)
84 + data->set.proxy_ssl.primary.authtype = CURL_TLSAUTH_SRP; /* default */
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/mga/
H A Dmga_dma.c78 drm_mga_primary_buffer_t *primary = &dev_priv->prim; in mga_do_dma_reset() local
82 /* The primary DMA stream should look like new right about now. in mga_do_dma_reset()
84 primary->tail = 0; in mga_do_dma_reset()
85 primary->space = primary->size; in mga_do_dma_reset()
86 primary->last_flush = 0; in mga_do_dma_reset()
100 * Primary DMA stream
105 drm_mga_primary_buffer_t *primary = &dev_priv->prim; in mga_do_dma_flush() local
120 if (primary->tail == primary->last_flush) { in mga_do_dma_flush()
125 tail = primary->tail + dev_priv->primary->offset; in mga_do_dma_flush()
139 primary->last_flush = primary->tail; in mga_do_dma_flush()
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/radeon/
H A Dradeon_dp_mst.c28 static int radeon_dp_mst_set_be_cntl(struct radeon_encoder *primary, in radeon_dp_mst_set_be_cntl() argument
32 struct drm_device *dev = primary->base.dev; in radeon_dp_mst_set_be_cntl()
38 reg = RREG32(NI_DIG_BE_CNTL + primary->offset); in radeon_dp_mst_set_be_cntl()
50 DRM_DEBUG_KMS("writing 0x%08x 0x%08x\n", NI_DIG_BE_CNTL + primary->offset, reg); in radeon_dp_mst_set_be_cntl()
51 WREG32(NI_DIG_BE_CNTL + primary->offset, reg); in radeon_dp_mst_set_be_cntl()
60 DRM_ERROR("timed out waiting for FE %d %d\n", primary->offset, mst_enc->fe); in radeon_dp_mst_set_be_cntl()
65 static int radeon_dp_mst_set_stream_attrib(struct radeon_encoder *primary, in radeon_dp_mst_set_stream_attrib() argument
70 struct drm_device *dev = primary->base.dev; in radeon_dp_mst_set_stream_attrib()
79 temp = RREG32(NI_DP_MSE_SAT0 + satreg + primary->offset); in radeon_dp_mst_set_stream_attrib()
89 DRM_DEBUG_KMS("writing 0x%08x 0x%08x\n", NI_DP_MSE_SAT0 + satreg + primary->offset, temp); in radeon_dp_mst_set_stream_attrib()
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/
H A Ddrm_modeset_helper.c102 * creating the primary plane. However drivers that still call
112 struct drm_plane *primary; in create_primary_plane() local
115 primary = kzalloc(sizeof(*primary), GFP_KERNEL); in create_primary_plane()
116 if (primary == NULL) { in create_primary_plane()
117 DRM_DEBUG_KMS("Failed to allocate primary plane\n"); in create_primary_plane()
125 primary->format_default = true; in create_primary_plane()
128 ret = drm_universal_plane_init(dev, primary, 0, in create_primary_plane()
135 kfree(primary); in create_primary_plane()
136 primary = NULL; in create_primary_plane()
139 return primary; in create_primary_plane()
[all …]
/OK3568_Linux_fs/kernel/Documentation/virt/
H A Dne_overview.rst16 application then runs in a separate VM than the primary VM, namely an enclave.
20 memory and CPUs, are carved out of the primary VM. Each enclave is mapped to a
21 process running in the primary VM, that communicates with the NE driver via an
26 1. An enclave abstraction process - a user space process running in the primary
30 There is a NE emulated PCI device exposed to the primary VM. The driver for this
36 hypervisor running on the host where the primary VM is running. The Nitro
39 2. The enclave itself - a VM running on the same host as the primary VM that
40 spawned it. Memory and CPUs are carved out of the primary VM and are dedicated
43 The memory regions carved out of the primary VM and given to an enclave need to
50 available for the primary VM. A CPU pool has to be set for NE purposes by an
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/
H A Dbcmwifi_channels.c55 * [<band>'g']<channel>['/'<bandwidth>[<primary-sideband>]
63 * or primary 20 MHz channel of 40MHz, 80MHz, 160MHz, 80+80MHz,
67 * <primary-sideband>:
70 * For 2.4GHz band 40MHz channels, the same primary channel may be the
72 * overlapping 40MHz channel. The {u: upper, l: lower} primary sideband
77 * non-overlapping and the primary 20MHz channel position is derived from its
89 * 40MHz channels is also allowed: <channel><primary-sideband>
92 * primary channel of 40MHz, channel <= 14 is 2GHz, otherwise 5GHz
93 * <primary-sideband>:
97 * Chanspec BW Center Ch Channel Range Primary Ch
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/
H A Dbcmwifi_channels.c55 * [<band>'g']<channel>['/'<bandwidth>[<primary-sideband>]
63 * or primary 20 MHz channel of 40MHz, 80MHz, 160MHz, 80+80MHz,
67 * <primary-sideband>:
70 * For 2.4GHz band 40MHz channels, the same primary channel may be the
72 * overlapping 40MHz channel. The {u: upper, l: lower} primary sideband
77 * non-overlapping and the primary 20MHz channel position is derived from its
89 * 40MHz channels is also allowed: <channel><primary-sideband>
92 * primary channel of 40MHz, channel <= 14 is 2GHz, otherwise 5GHz
93 * <primary-sideband>:
97 * Chanspec BW Center Ch Channel Range Primary Ch
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/v3d/
H A Dv3d_trace.h26 __entry->dev = dev->primary->index;
52 __entry->dev = dev->primary->index;
78 __entry->dev = dev->primary->index;
98 __entry->dev = dev->primary->index;
118 __entry->dev = dev->primary->index;
138 __entry->dev = dev->primary->index;
157 __entry->dev = dev->primary->index;
177 __entry->dev = dev->primary->index;
197 __entry->dev = dev->primary->index;
219 __entry->dev = dev->primary->index;
[all …]
/OK3568_Linux_fs/kernel/Documentation/sparc/oradax/
H A Ddax-hv-api.txt162 0b'11 Primary context virtual address
167 0b'011 Primary context virtual address
183 0b'011 Primary context virtual address
188 [4:2] Primary source address type
192 0b'011 Primary context virtual address
201 0b'11 Primary context virtual address
247 …require multiple data streams for processing, requiring the specification of both primary data for…
250 36.2.1.1.1. Primary Input Format
252 …The primary input format code is a 4-bit field when it is used. There are 10 primary input formats…
301 36.2.1.1.2. Primary Input Element Size
[all …]
/OK3568_Linux_fs/kernel/arch/sparc/include/uapi/asm/
H A Dasi.h129 #define ASI_AIUP 0x10 /* Primary, user */
131 #define ASI_AIUPL 0x18 /* Primary, user, little endian */
133 #define ASI_P 0x80 /* Primary, implicit */
135 #define ASI_PNF 0x82 /* Primary, no fault */
137 #define ASI_PL 0x88 /* Primary, implicit, l-endian */
139 #define ASI_PNFL 0x8a /* Primary, no fault, l-endian */
230 #define ASI_BLK_AIUP 0x70 /* Primary, user, block load/store */
241 #define ASI_BLK_AIUPL 0x78 /* Primary, user, little, blk ld/st*/
252 0x92 /* (NG7) MCD store BLKINIT primary */
254 #define ASI_PST8_P 0xc0 /* Primary, 8 8-bit, partial */
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/infineon/
H A Dbcmwifi_channels.c62 * [<band> 'g'] <channel> ['/'<bandwidth> [<primary-sideband>]['/'<1st80channel>'-'<2nd80channel>]]
69 * or primary channel of 40MHz, 80MHz, 160MHz, or 80+80MHz channel.
72 * <primary-sideband>:
73 * (only for 2.4GHz band 40MHz) U for upper sideband primary, L for lower.
75 * For 2.4GHz band 40MHz channels, the same primary channel may be the
82 * non-overlapping and the primary sub-band is derived from its
88 * Specifies the center channel of the primary and secondary 80MHz band.
94 * 40MHz channels is also allowed: <channel><primary-sideband>
97 * primary channel of 40MHz, channel <= 14 is 2GHz, otherwise 5GHz
98 * <primary-sideband>:
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/cywdhd/bcmdhd/
H A Dbcmwifi_channels.c62 * [<band> 'g'] <channel> ['/'<bandwidth> [<primary-sideband>]['/'<1st80channel>'-'<2nd80channel>]]
69 * or primary channel of 40MHz, 80MHz, 160MHz, or 80+80MHz channel.
72 * <primary-sideband>:
73 * (only for 2.4GHz band 40MHz) U for upper sideband primary, L for lower.
75 * For 2.4GHz band 40MHz channels, the same primary channel may be the
82 * non-overlapping and the primary sub-band is derived from its
88 * Specifies the center channel of the primary and secondary 80MHz band.
94 * 40MHz channels is also allowed: <channel><primary-sideband>
97 * primary channel of 40MHz, channel <= 14 is 2GHz, otherwise 5GHz
98 * <primary-sideband>:
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/infineon/bcmdhd/
H A Dbcmwifi_channels.c62 * [<band> 'g'] <channel> ['/'<bandwidth> [<primary-sideband>]['/'<1st80channel>'-'<2nd80channel>]]
69 * or primary channel of 40MHz, 80MHz, 160MHz, or 80+80MHz channel.
72 * <primary-sideband>:
73 * (only for 2.4GHz band 40MHz) U for upper sideband primary, L for lower.
75 * For 2.4GHz band 40MHz channels, the same primary channel may be the
82 * non-overlapping and the primary sub-band is derived from its
88 * Specifies the center channel of the primary and secondary 80MHz band.
94 * 40MHz channels is also allowed: <channel><primary-sideband>
97 * primary channel of 40MHz, channel <= 14 is 2GHz, otherwise 5GHz
98 * <primary-sideband>:
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/static/css/
H A Dbootstrap3-transition.css46 /* Remove the hovering from the .btn-primary buttons when they are disabled */
48 .btn-primary.disabled.focus,
49 .btn-primary.disabled:focus,
50 .btn-primary.disabled:hover,
51 .btn-primary.focus[disabled],
52 .btn-primary[disabled]:focus,
53 .btn-primary[disabled]:hover,
54 fieldset[disabled] .btn-primary.focus,
55 fieldset[disabled] .btn-primary:focus,
56 fieldset[disabled] .btn-primary:hover {
/OK3568_Linux_fs/kernel/Documentation/admin-guide/blockdev/drbd/
H A Dnode-states-8.dot2 Secondary -> Primary [ label = "ioctl_set_state()" ]
3 Primary -> Secondary [ label = "ioctl_set_state()" ]
7 Secondary -> Primary [ label = "recv state packet" ]
8 Primary -> Secondary [ label = "recv state packet" ]
9 Primary -> Unknown [ label = "connection lost" ]
11 Unknown -> Primary [ label = "connected" ]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/fsl-dcu/
H A Dfsl_dcu_drm_plane.c209 struct drm_plane *primary; in fsl_dcu_drm_primary_create_plane() local
212 primary = kzalloc(sizeof(*primary), GFP_KERNEL); in fsl_dcu_drm_primary_create_plane()
213 if (!primary) { in fsl_dcu_drm_primary_create_plane()
214 DRM_DEBUG_KMS("Failed to allocate primary plane\n"); in fsl_dcu_drm_primary_create_plane()
219 ret = drm_universal_plane_init(dev, primary, 0, in fsl_dcu_drm_primary_create_plane()
225 kfree(primary); in fsl_dcu_drm_primary_create_plane()
226 primary = NULL; in fsl_dcu_drm_primary_create_plane()
228 drm_plane_helper_add(primary, &fsl_dcu_drm_plane_helper_funcs); in fsl_dcu_drm_primary_create_plane()
230 return primary; in fsl_dcu_drm_primary_create_plane()
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/
H A Dext-ctrls-colorimetry.rst65 primary component c of the mastering display in increments of 0.00002.
68 primary, c equal to 1 corresponds to Blue primary and c equal to 2
69 corresponds to the Red color primary.
73 primary component c of the mastering display in increments of 0.00002.
76 primary, c equal to 1 corresponds to Blue primary and c equal to 2
77 corresponds to Red color primary.
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_indep_power/
H A Dbcmwifi_channels.c66 * or primary channel of 40MHz, 80MHz, 160MHz, or 80+80MHz channel.
69 * <primary-sideband>:
70 * (only for 2.4GHz band 40MHz) U for upper sideband primary, L for lower.
72 * For 2.4GHz band 40MHz channels, the same primary channel may be the
79 * non-overlapping and the primary sub-band is derived from its
94 * primary channel of 40MHz, channel <= 14 is 2GHz, otherwise 5GHz
99 * Chanspec BW Center Ch Channel Range Primary Ch
113 * Chanspec BW Center Ch Channel Range Primary Ch
501 /* read primary 80MHz channel */ in wf_chspec_aton()
615 /* figure out primary 20 MHz sideband */ in wf_chspec_aton()
[all …]
/OK3568_Linux_fs/u-boot/arch/arm/mach-rmobile/
H A DKconfig.3264 prompt "Qos setting primary"
69 bool "Non primary"
74 bool "Media primary"
76 Select multimedia primary mode for QoS setting.
79 bool "GFX primary"
81 Select GFX(graphics) primary mode for QoS setting.
/OK3568_Linux_fs/kernel/arch/powerpc/kvm/
H A Dbook3s_hv_ras.c111 * be handled by the primary thread in virtual mode. We can't in kvmppc_realmode_mc_power7()
177 * kvmppc_realmode_hmi_handler() is called only by primary thread during
208 * subcore status. Only primary threads from each subcore is responsible
215 * primary threads to decide who takes up the responsibility.
218 * - Primary thread from each subcore tries to set resync required bit[63]
220 * - The first primary thread that is able to set the flag takes the
225 * - All the primary thread will clear its subcore status from subcore
227 * - Once all primary threads clear in_guest[0-3], all of them will invoke
235 * - On return of this function, primary thread will signal all
253 * By now primary thread has already completed guest->host in kvmppc_realmode_hmi_handler()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/intel/iwlwifi/mvm/
H A Dcoex.c270 struct ieee80211_chanctx_conf *primary; member
305 /* if the primary is low latency, it will stay primary */ in iwl_mvm_bt_coex_tcm_based_ci()
312 swap(data->primary, data->secondary); in iwl_mvm_bt_coex_tcm_based_ci()
384 /* low latency is always primary */ in iwl_mvm_bt_notif_iterator()
388 data->secondary = data->primary; in iwl_mvm_bt_notif_iterator()
389 data->primary = chanctx_conf; in iwl_mvm_bt_notif_iterator()
396 if (chanctx_conf == data->primary) in iwl_mvm_bt_notif_iterator()
401 * downgrade the current primary no matter what its in iwl_mvm_bt_notif_iterator()
404 data->secondary = data->primary; in iwl_mvm_bt_notif_iterator()
405 data->primary = chanctx_conf; in iwl_mvm_bt_notif_iterator()
[all …]
/OK3568_Linux_fs/external/xserver/hw/xwin/
H A Dwinshadddnl.c91 * Create the primary surface and attach the clipper.
103 winDebug("winCreatePrimarySurfaceShadowDDNL - Creating primary surface\n"); in winCreatePrimarySurfaceShadowDDNL()
105 /* Describe the primary surface */ in winCreatePrimarySurfaceShadowDDNL()
111 /* Create the primary surface */ in winCreatePrimarySurfaceShadowDDNL()
121 "primary surface: DDERR_NOEXCLUSIVEMODE\n"); in winCreatePrimarySurfaceShadowDDNL()
125 "primary surface: %08x\n", (unsigned int) ddrval); in winCreatePrimarySurfaceShadowDDNL()
131 winDebug("winCreatePrimarySurfaceShadowDDNL - Created primary surface\n"); in winCreatePrimarySurfaceShadowDDNL()
134 /* Attach our clipper to our primary surface handle */ in winCreatePrimarySurfaceShadowDDNL()
138 ErrorF("winCreatePrimarySurfaceShadowDDNL - Primary attach clipper " in winCreatePrimarySurfaceShadowDDNL()
144 winDebug("winCreatePrimarySurfaceShadowDDNL - Attached clipper to primary " in winCreatePrimarySurfaceShadowDDNL()
[all …]

12345678910>>...120