/freebsd-src/sys/contrib/device-tree/Bindings/powerpc/fsl/ |
H A D | dma.txt | 4 This is a little-endian 4-channel DMA controller, used in Freescale mpc83xx 17 - DMA channel nodes: 18 - compatible : must include "fsl,elo-dma-channel" 20 - reg : DMA channel specific registers 21 - cell-index : DMA channel index starts at 0. 24 - interrupts : interrupt specifier for DMA channel IRQ 38 dma-channel@0 { 39 compatible = "fsl,mpc8349-dma-channel", "fsl,elo-dma-channel"; 45 dma-channel@80 { 46 compatible = "fsl,mpc8349-dma-channel", "fsl,elo-dma-channel"; [all …]
|
/freebsd-src/crypto/openssh/ |
H A D | nchan.c | 45 * SSH Protocol 1.5 aka New Channel Protocol 61 * i.e. both sides have to close the channel 70 /* functions manipulating channel states */ 72 * EVENTS update channel input/output states execute ACTIONS 75 * ACTIONS: should never update the channel states 77 static void chan_send_eof2(struct ssh *, Channel *); 78 static void chan_send_eow2(struct ssh *, Channel *); 81 static void chan_shutdown_write(struct ssh *, Channel *); 82 static void chan_shutdown_read(struct ssh *, Channel *); 83 static void chan_shutdown_extended_read(struct ssh *, Channel *); [all …]
|
H A D | channels.h | 41 /* Definitions for channel types. */ 45 #define SSH_CHANNEL_OPEN 4 /* normal open two-way channel */ 59 #define SSH_CHANNEL_MUX_PROXY 20 /* proxy channel for mux-client */ 86 struct Channel; 87 typedef struct Channel Channel; typedef 92 typedef int channel_infilter_fn(struct ssh *, struct Channel *, char *, int); 94 typedef u_char *channel_outfilter_fn(struct ssh *, struct Channel *, 97 /* Channel success/failure callbacks */ 98 typedef void channel_confirm_cb(struct ssh *, int, struct Channel *, void *); 99 typedef void channel_confirm_abandon_cb(struct ssh *, struct Channel *, void *); [all …]
|
/freebsd-src/contrib/wpa/src/drivers/ |
H A D | driver_macsec_qca.c | 520 u32 *channel) in macsec_qca_lookup_channel() argument 527 *channel = i; in macsec_qca_lookup_channel() 538 u32 channel) in macsec_qca_register_channel() argument 540 os_memcpy(&map[channel].sci, sci, sizeof(struct ieee802_1x_mka_sci)); in macsec_qca_register_channel() 546 u32 *channel) in macsec_qca_lookup_receive_channel() argument 549 channel); in macsec_qca_lookup_receive_channel() 555 u32 channel) in macsec_qca_register_receive_channel() argument 558 channel); in macsec_qca_register_receive_channel() 564 u32 *channel) in macsec_qca_lookup_transmit_channel() argument 567 channel); in macsec_qca_lookup_transmit_channel() 573 macsec_qca_register_transmit_channel(struct macsec_qca_data * drv,struct transmit_sc * sc,u32 channel) macsec_qca_register_transmit_channel() argument 587 u32 channel; macsec_qca_get_receive_lowest_pn() local 615 u32 channel; macsec_qca_get_transmit_next_pn() local 634 u32 channel; macsec_qca_set_transmit_next_pn() local 649 macsec_qca_get_available_receive_sc(void * priv,u32 * channel) macsec_qca_get_available_receive_sc() argument 685 u32 channel; macsec_qca_create_receive_sc() local 737 u32 channel; macsec_qca_delete_receive_sc() local 761 u32 channel; macsec_qca_create_receive_sa() local 809 u32 channel; macsec_qca_enable_receive_sa() local 829 u32 channel; macsec_qca_disable_receive_sa() local 845 macsec_qca_get_available_transmit_sc(void * priv,u32 * channel) macsec_qca_get_available_transmit_sc() argument 877 u32 channel; macsec_qca_create_transmit_sc() local 916 u32 channel; macsec_qca_delete_transmit_sc() local 941 u32 channel; macsec_qca_create_transmit_sa() local 1003 u32 channel; macsec_qca_enable_transmit_sa() local 1023 u32 channel; macsec_qca_disable_transmit_sa() local [all...] |
/freebsd-src/contrib/ntp/libntp/lib/isc/ |
H A D | log.c | 62 * This is the structure that holds each named channel. A simple linked 63 * list chains all of the channels together, so an individual channel is 93 isc_logchannel_t * channel; member 162 * Used when ISC_LOG_PRINTLEVEL is enabled for a channel. 214 * because its channel member is pointed to a channel that is created 229 const isc_logmodule_t *module, isc_logchannel_t *channel); 235 greatest_version(isc_logchannel_t *channel, int *greatest); 238 roll_log(isc_logchannel_t *channel); 252 #define FACILITY(channel) (channel->destination.facility) argument 253 #define FILE_NAME(channel) (channel->destination.file.name) argument [all …]
|
/freebsd-src/crypto/openssl/crypto/ |
H A D | trace.c | 29 * INTERNAL TRACE CHANNEL IMPLEMENTATION 32 * BIO sink object, also called the trace channel. Instead of a BIO object, 34 * internal trace channel is attached, which simply calls the registered 40 static long trace_ctrl(BIO *channel, int cmd, long argl, void *argp); 64 static int trace_write(BIO *channel, in trace_write() argument 67 struct trace_data_st *ctx = BIO_get_data(channel); in trace_write() 75 static int trace_puts(BIO *channel, const char *str) in trace_puts() argument 79 if (trace_write(channel, str, strlen(str), &written)) in trace_puts() 85 static long trace_ctrl(BIO *channel, int cmd, long argl, void *argp) in trace_ctrl() argument 87 struct trace_data_st *ctx = BIO_get_data(channel); in trace_ctrl() [all …]
|
/freebsd-src/sys/dev/pwm/ |
H A D | pwm_backlight.c | 63 pwm_channel_t channel; member 103 rv = pwm_get_by_ofw_propidx(dev, node, "pwms", 0, &sc->channel); in pwm_backlight_attach() 105 device_printf(dev, "Cannot map pwm channel %d\n", rv); in pwm_backlight_attach() 133 sc->channel->duty = sc->channel->period * sc->levels[sc->default_level] / 100; in pwm_backlight_attach() 138 device_printf(dev, "Configured period time: %ju\n", (uintmax_t)sc->channel->period); in pwm_backlight_attach() 139 device_printf(dev, "Default duty cycle: %ju\n", (uintmax_t)sc->channel->duty); in pwm_backlight_attach() 143 PWMBUS_CHANNEL_GET_CONFIG(sc->channel->dev, in pwm_backlight_attach() 144 sc->channel->channel, in pwm_backlight_attach() 145 (unsigned int *)&sc->channel->period, in pwm_backlight_attach() 146 (unsigned int *)&sc->channel->duty); in pwm_backlight_attach() [all …]
|
/freebsd-src/sys/contrib/openzfs/man/man5/ |
H A D | vdev_id.conf.5 | 56 .It Sy channel [ Ns Ar pci_slot ] Ar port Ar name 57 Maps a physical path to a channel name (typically representing a single 74 .Pa /dev/by-enclosure/ Ns Ao Ar prefix Ac Ns - Ns Ao Ar channel Ac Ns Aq Ar num 79 .It Sy slot Ar prefix Ar new Op Ar channel 83 .Ar channel 85 then the mapping is only applied to slots in the named channel, 90 Therefore a channel-specific mapping for a given slot should generally appear 92 In this way a custom mapping may be applied to a particular channel 180 # PCI_SLOT HBA PORT CHANNEL NAME 181 channel 8 [all...] |
/freebsd-src/sys/contrib/device-tree/Bindings/iio/dac/ |
H A D | adi,ad5770r.yaml | 58 channel@0: 59 description: Represents an external channel which are 60 connected to the DAC. Channel 0 can act both as a current 67 description: This represents the channel number. 71 description: Output range of the channel. 83 channel@1: 84 description: Represents an external channel which are 91 description: This represents the channel number. 95 description: Output range of the channel. 100 channel@2: [all …]
|
/freebsd-src/lib/libpmc/ |
H A D | pmc.corei7uc.3 | 420 Uncore cycles all the entries in the DRAM channel 0 medium or low priority 424 Uncore cycles all the entries in the DRAM channel 1 medium or low priority 428 Uncore cycles all the entries in the DRAM channel 2 medium or low priority 432 Uncore cycles all the entries in the DRAM channel 0 medium or low priority 436 Counts cycles all the entries in the DRAM channel 1 medium or low priority 440 Uncore cycles all the entries in the DRAM channel 2 medium or low priority 444 Counts cycles all the entries in the DRAM channel 0 high priority queue are 448 Counts cycles all the entries in the DRAM channel 1 high priority queue are 452 Counts cycles all the entries in the DRAM channel 2 high priority queue are 456 Counts cycles all the entries in the DRAM channel 0 high priority queue are [all …]
|
H A D | pmc.westmereuc.3 | 474 Counts cycles all the entries in the DRAM channel 0 high priority queue are 478 Counts cycles all the entries in the DRAM channel 1 high priority queue are 482 Counts cycles all the entries in the DRAM channel 2 high priority queue are 486 Counts cycles all the entries in the DRAM channel 0 high priority queue are 490 Counts cycles all the entries in the DRAM channel 1 high priority queue are 494 Counts cycles all the entries in the DRAM channel 2 high priority queue are 499 read request to DRAM channel 0. 503 read request to DRAM channel 1. 507 read request to DRAM channel 2. 511 write request to DRAM channel 0. [all …]
|
/freebsd-src/contrib/wpa/src/ap/ |
H A D | dfs.c | 75 /* dfs_channel_available: select new channel according to type parameter */ 80 /* Select only radar channel where CAC has not been in dfs_is_chan_allowed() 93 * channel for CSA, unless they are available for immediate use. in dfs_is_chan_allowed() 113 * The tables contain first valid channel number based on channel width. in dfs_is_chan_allowed() 114 * We will also choose this first channel as the control one. in dfs_is_chan_allowed() 188 /* hostapd DFS implementation assumes the first channel as primary. in dfs_chan_range_available() 189 * If it's not allowed to use the first channel as primary, decline the 190 * whole channel range. */ 192 wpa_printf(MSG_DEBUG, "DFS: primary channel no in is_in_chanlist() 405 struct hostapd_channel_data *channel; dfs_check_chans_radar() local 425 struct hostapd_channel_data *channel; dfs_check_chans_available() local 454 struct hostapd_channel_data *channel; dfs_check_chans_unavailable() local 731 struct hostapd_channel_data *channel; dfs_get_cac_time() local 758 struct hostapd_channel_data *channel; hostapd_handle_dfs() local 945 struct hostapd_channel_data *channel; dfs_downgrade_bandwidth() local 980 struct hostapd_channel_data *channel; hostapd_dfs_start_channel_switch_cac() local 1027 struct hostapd_channel_data *channel; hostapd_dfs_start_channel_switch() local [all...] |
/freebsd-src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/ |
H A D | tst.stack_gsub.err | 1 Channel program execution failed: 5 [string "channel program"]:17: in function <[string "channel program"]:16> 7 [string "channel program"]:17: in function <[string "channel program"]:16> 9 [string "channel program"]:17: in function <[string "channel program"]:16> 11 [string "channel program"]:17: in function <[string "channel program"]:16> 13 [string "channel program"]:17: in function <[string "channel program"]:16> 15 [string "channel program"]:17: in function <[string "channel program"]:16> 17 [string "channel program"]:17: in function <[string "channel program"]:16>
|
/freebsd-src/share/man/man9/ |
H A D | pwmbus.9 | 41 .Fn PWMBUS_CHANNEL_CONFIG "device_t bus" "u_int channel" "u_int period" "u_int duty" 45 .Fn PWMBUS_CHANNEL_ENABLE "device_t bus" "u_int channel" "bool enable" 47 .Fn PWMBUS_CHANNEL_GET_CONFIG "device_t bus" "u_int channel" "u_int *period" "u_int *duty" 49 .Fn PWMBUS_CHANNEL_GET_FLAGS "device_t bus" "u_int channel" "uint32_t *flags" 51 .Fn PWMBUS_CHANNEL_IS_ENABLED "device_t bus" "u_int channel" "bool *enabled" 53 .Fn PWMBUS_CHANNEL_SET_FLAGS "device_t bus" "u_int channel" "uint32_t flags" 68 Channel numbers count up from zero. 71 In such cases, changing the period or duty cycle of any one channel may affect 77 .It Fn PWMBUS_CHANNEL_CONFIG "device_t bus" "u_int channel" "u_int period" "u_int duty" 79 for the specified channel. [all …]
|
/freebsd-src/contrib/wpa/wpa_supplicant/ |
H A D | offchannel.c | 2 * wpa_supplicant - Off-channel Action frame TX/RX 80 "Off-channel: Send Action callback (without_roc=%d pending_action_tx=%p pending_action_tx_done=%d)", in wpas_send_action_cb() 101 wpa_printf(MSG_DEBUG, "Off-channel: Pending Action frame TX " in wpas_send_action_cb() 111 * on the correct channel, but remain-on-channel cancel in wpas_send_action_cb() 114 wpa_printf(MSG_DEBUG, "Off-channel: Schedule " in wpas_send_action_cb() 115 "remain-on-channel to send Action frame"); in wpas_send_action_cb() 128 wpa_printf(MSG_DEBUG, "Off-channel: Failed to " in wpas_send_action_cb() 130 "channel (%u MHz) for Action Frame " in wpas_send_action_cb() 141 wpa_printf(MSG_DEBUG, "Off-channel in wpas_send_action_cb() [all...] |
/freebsd-src/sys/arm/freescale/vybrid/ |
H A D | vf_edma.h | 47 #define DMA_DCHPRI3 0x100 /* Channel n Priority */ 48 #define DMA_DCHPRI2 0x101 /* Channel n Priority */ 49 #define DMA_DCHPRI1 0x102 /* Channel n Priority */ 50 #define DMA_DCHPRI0 0x103 /* Channel n Priority */ 51 #define DMA_DCHPRI7 0x104 /* Channel n Priority */ 52 #define DMA_DCHPRI6 0x105 /* Channel n Priority */ 53 #define DMA_DCHPRI5 0x106 /* Channel n Priority */ 54 #define DMA_DCHPRI4 0x107 /* Channel n Priority */ 55 #define DMA_DCHPRI11 0x108 /* Channel n Priority */ 56 #define DMA_DCHPRI10 0x109 /* Channel n Priority */ [all …]
|
/freebsd-src/sys/contrib/device-tree/Bindings/iio/adc/ |
H A D | qcom,pm8018-adc.yaml | 44 a hardware channel on all systems. 49 "#io-channel-cells": 59 - "#io-channel-cells" 62 - adc-channel@c 63 - adc-channel@d 64 - adc-channel@f 67 "^(adc-channel@)[0-9a-f]$": 70 ADC channel specific configuration. 92 Channel calibration type. If this property is specified 93 VADC will use a special voltage references for channel [all …]
|
H A D | qcom,pm8xxx-xoadc.txt | 24 identifying each ADC channel: 31 channel on all systems. 35 - #io-channel-cells: should be set to <2>, again the cells are 48 adc-channel@c { 52 adc-channel@d { 56 adc-channel@f { 68 Required channel node properties: 70 - reg: should contain the hardware channel number in the range 73 Optional channel node properties: 84 Definition: Channel calibration type. If this property is specified [all …]
|
/freebsd-src/sys/contrib/device-tree/Bindings/dma/xilinx/ |
H A D | xilinx_dma.txt | 2 It can be configured to have one channel or two channels. If configured 7 target devices. It can be configured to have one channel or two channels. 28 - dma-channel child node: Should have at least one channel and can have up to 30 DMA channel (see child node properties below). 59 - xlnx,flush-fsync: Tells which channel to Flush on Frame sync. 62 {2}, flush mm2s channel 63 {3}, flush s2mm channel 67 For VDMA: It should be either "xlnx,axi-vdma-mm2s-channel" or 68 "xlnx,axi-vdma-s2mm-channel". 69 For CDMA: It should be "xlnx,axi-cdma-channel". [all …]
|
/freebsd-src/sys/amd64/vmm/io/ |
H A D | vatpit.c | 80 struct channel { 102 struct channel channel[3]; 108 vatpit_delta_ticks(struct vatpit *vatpit, struct channel *c) in vatpit_delta_ticks() 123 vatpit_get_out(struct vatpit *vatpit, int channel) in vatpit_get_out() 125 struct channel *c; in vatpit_get_out() 129 c = &vatpit->channel[channel]; in vatpit_get_out() 150 struct channel *c; in vatpit_callout_handler() 153 c = &vatpit->channel[ar in vatpit_callout_handler() 79 struct channel { global() struct 101 struct channel channel[3]; global() member 122 vatpit_get_out(struct vatpit * vatpit,int channel) vatpit_get_out() argument 247 pit_readback1(struct vatpit * vatpit,int channel,uint8_t cmd) pit_readback1() argument 481 struct channel *channel; vatpit_snapshot() local [all...] |
/freebsd-src/contrib/wpa/src/common/ |
H A D | hw_features_common.c | 132 wpa_printf(MSG_ERROR, "Channel %d is not allowed as primary", in allowed_ht40_channel_pair() 138 "HT40: control channel: %d (%d MHz), secondary channel: %d (%d MHz)", in allowed_ht40_channel_pair() 141 /* Verify that HT40 secondary channel is an allowed 20 MHz in allowed_ht40_channel_pair() 142 * channel */ in allowed_ht40_channel_pair() 146 wpa_printf(MSG_ERROR, "HT40 secondary channel %d not allowed", in allowed_ht40_channel_pair() 152 * Verify that HT40 primary,secondary channel pair is allowed per in allowed_ht40_channel_pair() 154 * 2.4 GHz rules allow all cases where the secondary channel fits into in allowed_ht40_channel_pair() 170 wpa_printf(MSG_ERROR, "HT40 channel pair (%d, %d) not allowed", in allowed_ht40_channel_pair() 217 * channel, bu in check_40mhz_5g() 383 hostapd_set_freq_params(struct hostapd_freq_params * data,enum hostapd_hw_mode mode,int freq,int channel,int enable_edmg,u8 edmg_channel,int ht_enabled,int vht_enabled,int he_enabled,int sec_channel_offset,int oper_chwidth,int center_segment0,int center_segment1,u32 vht_caps,struct he_capabilities * he_cap) hostapd_set_freq_params() argument [all...] |
/freebsd-src/sys/contrib/device-tree/Bindings/dma/ti/ |
H A D | k3-bcdma.yaml | 20 optional triggers a block copy channel can service peripherals by accessing 28 PDMAs can be configured via BCDMA split channel's peer registers to match with 49 cell 1: type of the BCDMA channel to be used to service the peripheral: 50 0 - split channel 51 1 - block copy channel using global trigger 1 52 2 - block copy channel using global trigger 2 53 3 - block copy channel using local trigger 55 cell 2: parameter for the channel: 56 if cell 1 is 0 (split channel): 64 if cell 1 is 1 or 2 (block copy channel using global trigger): [all …]
|
/freebsd-src/sys/contrib/device-tree/Bindings/input/ |
H A D | iqs626a.yaml | 13 The Azoteq IQS626A is a 14-channel capacitive touch controller that features 45 2: Ultra-low power (ULP channel proximity sensing) 87 Selects the channel or group of channels for which the GPIO3 pin 90 1: ULP channel 93 4: Generic channel 0 94 5: Generic channel 1 95 6: Generic channel 2 96 7: Hall channel 104 long-term average) of an associated channel as follows: 173 Represents a single sensing channel. A channel is active if defined and [all …]
|
/freebsd-src/sys/contrib/device-tree/Bindings/firmware/ |
H A D | fsl,scu.yaml | 52 channel for general interrupt. The number of expected tx and rx 61 - description: TX0 MU channel 62 - description: RX0 MU channel 64 - description: TX0 MU channel 65 - description: RX0 MU channel 66 - description: optional MU channel for general interrupt 68 - description: TX0 MU channel 69 - description: TX1 MU channel 70 - description: TX2 MU channel 71 - description: TX3 MU channel [all …]
|
/freebsd-src/lib/libpmc/pmu-events/arch/x86/amdzen3/ |
H A D | data-fabric.json | 36 …"PublicDescription": "DRAM Channel Controller Request Types: Requests with Data (64B): DRAM Channe… 44 …"PublicDescription": "DRAM Channel Controller Request Types: Requests with Data (64B): DRAM Channe… 52 …"PublicDescription": "DRAM Channel Controller Request Types: Requests with Data (64B): DRAM Channe… 60 …"PublicDescription": "DRAM Channel Controller Request Types: Requests with Data (64B): DRAM Channe… 68 …"PublicDescription": "DRAM Channel Controller Request Types: Requests with Data (64B): DRAM Channe… 76 …"PublicDescription": "DRAM Channel Controller Request Types: Requests with Data (64B): DRAM Channe… 84 …"PublicDescription": "DRAM Channel Controller Request Types: Requests with Data (64B): DRAM Channe… 92 …"PublicDescription": "DRAM Channel Controller Request Types: Requests with Data (64B): DRAM Channe…
|