/linux-4.1.27/arch/xtensa/include/asm/ |
D | asmmacro.h | 48 .macro __loopi ar, at, size, incr 51 movi \at, ((\size + \incr - 1) / (\incr)) 52 loop \at, 99f 54 addi \at, \ar, \size 64 .macro __loops ar, as, at, incr_log2, mask_log2, cond, ncond 68 addi \at, \as, (1 << \incr_log2) - 1 70 extui \at, \at, \incr_log2, \mask_log2 72 srli \at, \at, \incr_log2 75 loop\cond \at, 99f 78 extui \at, \as, \incr_log2, \mask_log2 [all …]
|
D | cacheasm.h | 34 .macro __loop_cache_all ar at insn size line_width 38 __loopi \ar, \at, \size, (4 << (\line_width)) 43 __endla \ar, \at, 4 << (\line_width) 48 .macro __loop_cache_range ar as at insn line_width 50 extui \at, \ar, 0, \line_width 51 add \as, \as, \at 53 __loops \ar, \as, \at, \line_width 55 __endla \ar, \at, (1 << (\line_width)) 60 .macro __loop_cache_page ar at insn line_width 62 __loopi \ar, \at, PAGE_SIZE, 4 << (\line_width) [all …]
|
D | uaccess.h | 73 .macro set_fs at, av, sp 74 GET_CURRENT(\at,\sp) 75 s32i \av, \at, THREAD_CURRENT_DS 101 .macro kernel_ok at, sp, success 102 get_fs \at, \sp 103 beqz \at, \success 129 .macro user_ok aa, as, at, error 130 movi \at, __XTENSA_UL_CONST(TASK_SIZE) 131 bgeu \as, \at, \error 132 sub \at, \at, \as [all …]
|
/linux-4.1.27/drivers/scsi/ |
D | 53c700_d.h_shipped | 12 ;; (at your option) any later version. 146 at 0x00000000 : */ 0x41000000,0x00000020, 150 at 0x00000002 : */ 0x830b0000,0x00000460, 154 at 0x00000004 : */ 0x860a0000,0x000001b0, 158 at 0x00000006 : */ 0x98080000,0x00000110, 164 at 0x00000008 : */ 0x50000000,0x00000058, 168 at 0x0000000a : */ 0x9f0b0000,0x00001000, 172 at 0x0000000c : */ 0x98080000,0x00002002, 179 at 0x0000000e : */ 0x0f000001,0x00000000, 183 at 0x00000010 : */ 0x98080000,0x00001003, [all …]
|
/linux-4.1.27/drivers/staging/lustre/lustre/include/ |
D | lustre_import.h | 351 static inline void at_reset(struct adaptive_timeout *at, int val) in at_reset() argument 353 spin_lock(&at->at_lock); in at_reset() 354 at->at_current = val; in at_reset() 355 at->at_worst_ever = val; in at_reset() 356 at->at_worst_time = get_seconds(); in at_reset() 357 spin_unlock(&at->at_lock); in at_reset() 359 static inline void at_init(struct adaptive_timeout *at, int val, int flags) in at_init() argument 361 memset(at, 0, sizeof(*at)); in at_init() 362 spin_lock_init(&at->at_lock); in at_init() 363 at->at_flags = flags; in at_init() [all …]
|
/linux-4.1.27/drivers/ata/ |
D | pata_ns87410.c | 68 struct ata_timing at; in ns87410_set_piomode() local 87 if (ata_timing_compute(adev, adev->pio_mode, &at, 30303, 1) < 0) { in ns87410_set_piomode() 92 at.active = clamp_val(at.active, 2, 16) - 2; in ns87410_set_piomode() 93 at.setup = clamp_val(at.setup, 1, 4) - 1; in ns87410_set_piomode() 94 at.recover = clamp_val(at.recover, 1, 12) - 1; in ns87410_set_piomode() 96 idetcr = (at.setup << 6) | (recoverbits[at.recover] << 3) | activebits[at.active]; in ns87410_set_piomode()
|
D | pata_amd.c | 51 struct ata_timing at, apeer; in timing_setup() local 61 if (ata_timing_compute(adev, speed, &at, T, UT) < 0) { in timing_setup() 70 ata_timing_merge(&apeer, &at, &at, ATA_TIMING_8BIT); in timing_setup() 73 ata_timing_merge(&apeer, &at, &at, ATA_TIMING_8BIT); in timing_setup() 76 if (speed == XFER_UDMA_5 && amd_clock <= 33333) at.udma = 1; in timing_setup() 77 if (speed == XFER_UDMA_6 && amd_clock <= 33333) at.udma = 15; in timing_setup() 85 t = (t & ~(3 << ((3 - dn) << 1))) | ((clamp_val(at.setup, 1, 4) - 1) << ((3 - dn) << 1)); in timing_setup() 90 ((clamp_val(at.act8b, 1, 16) - 1) << 4) | (clamp_val(at.rec8b, 1, 16) - 1)); in timing_setup() 94 ((clamp_val(at.active, 1, 16) - 1) << 4) | (clamp_val(at.recover, 1, 16) - 1)); in timing_setup() 98 t = at.udma ? (0xc0 | (clamp_val(at.udma, 2, 5) - 2)) : 0x03; in timing_setup() [all …]
|
/linux-4.1.27/net/netfilter/ |
D | xt_u32.c | 27 u_int32_t at; in u32_match_it() local 35 at = 0; in u32_match_it() 60 if (at + val < at) in u32_match_it() 62 at += val; in u32_match_it() 64 if (at + 4 < at || skb->len < at + 4 || in u32_match_it() 65 pos > skb->len - at - 4) in u32_match_it() 68 if (skb_copy_bits(skb, at + pos, &n, in u32_match_it()
|
/linux-4.1.27/drivers/staging/lustre/lustre/ptlrpc/ |
D | import.c | 544 struct adaptive_timeout *at = &imp->imp_at.iat_net_latency; in import_select_connection() local 545 if (at_get(at) < CONNECTION_SWITCH_MAX) { in import_select_connection() 546 at_measured(at, at_get(at) + CONNECTION_SWITCH_INC); in import_select_connection() 547 if (at_get(at) > CONNECTION_SWITCH_MAX) in import_select_connection() 548 at_reset(at, CONNECTION_SWITCH_MAX); in import_select_connection() 552 imp->imp_obd->obd_name, at_get(at)); in import_select_connection() 1533 int at_measured(struct adaptive_timeout *at, unsigned int val) in at_measured() argument 1535 unsigned int old = at->at_current; in at_measured() 1539 LASSERT(at); in at_measured() 1541 val, at, now - at->at_binstart, at->at_current, in at_measured() [all …]
|
/linux-4.1.27/drivers/net/appletalk/ |
D | ipddp.c | 166 ddp->deh_dnet = rt->at.s_net; /* FIXME more hops?? */ in ipddp_xmit() 169 ddp->deh_dnode = rt->at.s_node; in ipddp_xmit() 181 aarp_send_ddp(rt->dev, skb, &rt->at, NULL); in ipddp_xmit() 200 rt->at = new_rt->at; in ipddp_create() 202 if ((rt->dev = atrtr_get_dev(&rt->at)) == NULL) { in ipddp_create() 235 tmp->at.s_net == rt->at.s_net && in ipddp_delete() 236 tmp->at.s_node == rt->at.s_node) in ipddp_delete() 260 f->at.s_net == rt->at.s_net && in __ipddp_find_route() 261 f->at.s_node == rt->at.s_node) in __ipddp_find_route()
|
/linux-4.1.27/Documentation/misc-devices/ |
D | eeprom | 20 24C01 1K 0x50 (shadows at 0x51 - 0x57) 24 (additional data at 0x51, 0x53, 0x55, 0x57) 25 24C08 8K 0x50, 0x54 (additional data at 0x51, 0x52, 27 24C16 16K 0x50 (additional data at 0x51 - 0x57) 30 Atmel 34C02B 2K 0x50 - 0x57, SW write protect at 0x30-37 31 Catalyst 34FC02 2K 0x50 - 0x57, SW write protect at 0x30-37 32 Catalyst 34RC02 2K 0x50 - 0x57, SW write protect at 0x30-37 33 Fairchild 34W02 2K 0x50 - 0x57, SW write protect at 0x30-37 34 Microchip 24AA52 2K 0x50 - 0x57, SW write protect at 0x30-37 35 ST M34C02 2K 0x50 - 0x57, SW write protect at 0x30-37 [all …]
|
D | c2port.txt | 9 (at your option) any later version. 31 The C2 Interface main references are at (http://www.silabs.com) 34 - AN127: FLASH Programming via the C2 Interface at 37 - C2 Specification at
|
D | max6875 | 63 The configuration registers are at addresses 0x00 - 0x45. 76 The configuration EEPROM is at addresses 0x8000 - 0x8045. 77 The user EEPROM is at addresses 0x8100 - 0x82ff. 96 To read data starting at offset 0x8100, first set the address:
|
/linux-4.1.27/Documentation/ja_JP/ |
D | stable_kernel_rules.txt | 11 file at first. 20 翻訳者: Tsugikazu Shibata <tshibata at ab dot jp dot nec dot com> 21 校正者: 武井伸光さん、<takei at webmasters dot gr dot jp> 22 かねこさん (Seiji Kaneko) <skaneko at a2 dot mbn dot or dot jp> 23 小林 雅典さん (Masanori Kobayasi) <zap03216 at nifty dot ne dot jp> 24 野口さん (Kenji Noguchi) <tokyo246 at gmail dot com> 25 神宮信太郎さん <jin at libjingu dot jp>
|
D | stable_api_nonsense.txt | 21 原著作者: Greg Kroah-Hartman < greg at kroah dot com > 22 翻訳者 : 池田 宗広 < m-ikeda at ds dot jp dot nec dot com > 23 校正者 : Masanori Kobayashi さん < zap03216 at nifty dot ne dot jp > 24 Seiji Kaneko さん < skaneko at a2 dot mbn dot or dot jp > 32 Greg Kroah-Hartman <greg at kroah dot com>
|
D | HOWTO | 22 翻訳者: Tsugikazu Shibata <tshibata at ab dot jp dot nec dot com> 23 校正者: 松倉さん <nbh--mats at nifty dot com> 24 小林 雅典さん (Masanori Kobayasi) <zap03216 at nifty dot ne dot jp> 25 武井伸光さん、<takei at webmasters dot gr dot jp> 26 かねこさん (Seiji Kaneko) <skaneko at a2 dot mbn dot or dot jp> 27 野口さん (Kenji Noguchi) <tokyo246 at gmail dot com> 28 河内さん (Takayoshi Kochi) <t-kochi at bq dot jp dot nec dot com> 29 岩本さん (iwamoto) <iwamoto.kn at ncos dot nec dot co dot jp> 30 内田さん (Satoshi Uchida) <s-uchida at ap dot jp dot nec dot com>
|
/linux-4.1.27/Documentation/hwmon/ |
D | lm90 | 8 Datasheet: Publicly available at the National Semiconductor website 13 Datasheet: Publicly available at the National Semiconductor website 18 Datasheet: Publicly available at the National Semiconductor website 23 Datasheet: Publicly available at the National Semiconductor website 28 Datasheet: Publicly available at the ON Semiconductor website 33 Datasheet: Publicly available at the ON Semiconductor website 38 Datasheet: Publicly available at the ON Semiconductor website 43 Datasheet: Publicly available at the ON Semiconductor website 48 Datasheet: Publicly available at the Maxim website 53 Datasheet: Publicly available at the Maxim website [all …]
|
D | lm75 | 8 Datasheet: Publicly available at the National Semiconductor website 13 Datasheet: Publicly available at the National Semiconductor website 18 Datasheet: Publicly available at the Maxim website 23 Datasheet: Publicly available at the Maxim website 28 Datasheet: Publicly available at the Microchip website 33 Datasheet: Publicly available at the Microchip website 38 Datasheet: Publicly available at the Analog Devices website 43 Datasheet: Publicly available at the ST website 48 Datasheet: Publicly available at the Texas Instruments website 59 Datasheet: Publicly available at the NXP website
|
D | ina2xx | 8 Datasheet: Publicly available at the Texas Instruments website 14 Datasheet: Publicly available at the Texas Instruments website 20 Datasheet: Publicly available at the Texas Instruments website 26 Datasheet: Publicly available at the Texas Instruments website 32 Datasheet: Publicly available at the Texas Instruments website 54 The shunt value in micro-ohms can be set via platform data or device tree at 55 compile-time or via the shunt_resistor attribute in sysfs at run-time. Please
|
D | adm1021 | 8 Datasheet: Publicly available at the Analog Devices website 12 Datasheet: Publicly available at the Analog Devices website 20 Datasheet: Publicly available at the Maxim website 24 Datasheet: Publicly available at the Maxim website 28 Datasheet: Publicly available at the National Semiconductor website 32 Datasheet: Publicly available at the Philips website 36 Datasheet: Publicly available at the Philips website 40 Datasheet: Publicly available at the TI website 44 Datasheet: Publicly available at the Onsemi website 82 is read at least once. This means that the cause for the alarm may already
|
D | ad7314 | 7 Datasheet: Publicly available at Analog Devices website. 10 Datasheet: Publicly available at Analog Devices website. 13 Datasheet: Publicly available at Analog Devices website.
|
D | adt7475 | 8 Datasheet: Publicly available at the On Semiconductors website 12 Datasheet: Publicly available at the On Semiconductors website 16 Datasheet: Publicly available at the On Semiconductors website 20 Datasheet: Publicly available at the On Semiconductors website 98 point1: Set the PWM speed at the lower temperature bound 99 point2: Set the PWM speed at the higher temperature bound 106 for a channel at a given time, in which case the maximum value (fastest
|
D | adt7410 | 8 Datasheet: Publicly available at the Analog Devices website 13 Datasheet: Publicly available at the Analog Devices website 18 Datasheet: Publicly available at the Analog Devices website 23 Datasheet: Publicly available at the Analog Devices website 32 -55°C to +150°C. It has a high accuracy of +/-0.5°C and can be operated at a
|
D | lm63 | 8 Datasheet: Publicly available at the National Semiconductor website 13 Datasheet: Publicly available at the National Semiconductor website 18 Datasheet: Publicly available at the National Semiconductor website 52 83 RPM, at least in theory. 73 support these GPIO lines at present.
|
D | sht21 | 8 Datasheet: Publicly available at the Sensirion website 14 Datasheet: Publicly available at the Sensirion website 46 e.g. maximum two measurements per second at the given resolution.
|
D | adc128d818 | 8 Datasheet: Publicly available at the TI website 36 is read at least once. This means that the cause for the alarm may 38 caches the alarm status for each sensor until it is at least reported
|
D | g762 | 8 For additional information, a detailed datasheet is available at 51 it run at full speed. 56 entry (0 stops the fan, 255 makes it run at full speed). In closed-loop mode 65 Note that the driver will update its values at most once per second.
|
D | adm1031 | 8 Datasheet: Publicly available at the Analog Devices website 14 Datasheet: Publicly available at the Analog Devices website
|
D | it87 | 16 Datasheet: Once publicly available at the ITE website, but no longer 20 Datasheet: Once publicly available at the ITE website, but no longer 24 Datasheet: Once publicly available at the ITE website, but no longer 28 Datasheet: Once publicly available at the ITE website, but no longer 87 at power on will be the actual battery voltage (which the chip does 89 the chip so can be read at any time. Excessive reading may decrease 131 this value can currently only be read once at initialization time, so 194 is read at least once. This means that the cause for the alarm may already 209 Give 0 for unused sensor. Any other value is invalid. To configure this at 238 at full speed) while the PWM output of the other 3 trip points can be
|
D | adt7462 | 8 Datasheet: Publicly available at the Analog Devices website 60 point1: Set the pwm speed at a lower temperature bound. 61 point2: Set the pwm speed at a higher temperature bound.
|
D | adt7411 | 8 Datasheet: Publicly available at the Analog Devices website 36 fast_sampling - Sample at 22.5 kHz instead of 1.4 kHz, but drop filters
|
D | w83781d | 82 hysteresis value for temp1 to 127 at initialization. 145 is read at least once. This means that the cause for the alarm may 359 AS99127F revision 2 seems to have two PWM registers at 0x59 and 0x5A, 360 and a temperature sensor type selector at 0x5B (which basically means 363 Revision 1 of the chip also has the temperature sensor type selector at 375 is below a given limit, the fan runs at low speed. If the value is above 376 the limit, the fan runs at full speed. We have no clue as to what the limit 384 at full speed, while if it is above the limit it runs at low speed (so this 393 fans run at low speed, and 0x7F or 0x80 to make them run at full speed. 397 AS99127F chips at all. [all …]
|
/linux-4.1.27/arch/mips/math-emu/ |
D | sp_mul.c | 36 unsigned at; in ieee754sp_mul() local 139 at = lrm + (t << 16); in ieee754sp_mul() 140 hrm += at < lrm; in ieee754sp_mul() 141 lrm = at; in ieee754sp_mul() 145 at = lrm + (t << 16); in ieee754sp_mul() 146 hrm += at < lrm; in ieee754sp_mul() 147 lrm = at; in ieee754sp_mul()
|
D | dp_mul.c | 36 u64 at; in ieee754dp_mul() local 144 at = lrm + (t << 32); in ieee754dp_mul() 145 hrm += at < lrm; in ieee754dp_mul() 146 lrm = at; in ieee754dp_mul() 152 at = lrm + (t << 32); in ieee754dp_mul() 153 hrm += at < lrm; in ieee754dp_mul() 154 lrm = at; in ieee754dp_mul()
|
/linux-4.1.27/drivers/media/dvb-frontends/drx39xyj/ |
D | drx_dap_fasi.h | 201 #error DRXDAP_MAX_WCHUNKSIZE must be at least 3 in single master mode 204 #error DRXDAP_MAX_WCHUNKSIZE must be at least 5 in multi master mode 209 #error DRXDAP_MAX_WCHUNKSIZE must be at least 5 in single master mode 212 #error DRXDAP_MAX_WCHUNKSIZE must be at least 7 in multi master mode 225 #error DRXDAP_MAX_RCHUNKSIZE must be at least 2
|
/linux-4.1.27/net/appletalk/ |
D | ddp.c | 99 struct atalk_sock *at = at_sk(s); in atalk_search_socket() local 101 if (to->sat_port != at->src_port) in atalk_search_socket() 108 if (to->sat_addr.s_net == at->src_net && in atalk_search_socket() 109 (to->sat_addr.s_node == at->src_node || in atalk_search_socket() 118 atif->address.s_node == at->src_node) { in atalk_search_socket() 143 struct atalk_sock *at; in atalk_find_or_insert_socket() local 147 at = at_sk(s); in atalk_find_or_insert_socket() 149 if (at->src_net == sat->sat_addr.s_net && in atalk_find_or_insert_socket() 150 at->src_node == sat->sat_addr.s_node && in atalk_find_or_insert_socket() 151 at->src_port == sat->sat_port) in atalk_find_or_insert_socket() [all …]
|
D | atalk_proc.c | 169 struct atalk_sock *at; in atalk_seq_socket_show() local 178 at = at_sk(s); in atalk_seq_socket_show() 182 s->sk_type, ntohs(at->src_net), at->src_node, at->src_port, in atalk_seq_socket_show() 183 ntohs(at->dest_net), at->dest_node, at->dest_port, in atalk_seq_socket_show()
|
/linux-4.1.27/Documentation/networking/ |
D | spider_net.txt | 42 descriptor pointer (GDACTDPA). The GDACTDPA points at the descr 51 hardware is ahead, the tail pointer will be pointing at a "full" 61 When traffic is flowing, then the head pointer will be pointing at 69 pointer, at which point the OS will notice that the head descr is 73 all be pointing at the same descr, which should be "empty". All of the 78 of the ring, starting at the tail pointer, and listing the status 84 net eth1: Chain tail located at descr=20 85 net eth1: Chain head is at 20 86 net eth1: HW curr desc (GDACTDPA) is at 21 88 net eth1: HW next desc (GDACNEXTDA) is at 22 [all …]
|
D | fore200e.txt | 12 The intent is to enable the use of different models of FORE adapters at the 31 uploaded to the ATM adapters at system boot time or at module loading time. 39 You can also get the latest firmware images from FORE Systems at 48 Name and location of the new firmware images can be set at kernel
|
D | igbvf.txt | 27 This driver is only supported as a loadable module at this time. Intel is 45 Driver ID Guide at: 63 strongly recommend downloading the latest version at: 70 For general information, go to the Intel support website at: 74 or the Intel Wired Networking project hosted by Sourceforge at:
|
D | i40evf.txt | 26 Driver ID Guide at: 37 For general information, go to the Intel support website at: 41 or the Intel Wired Networking project hosted by Sourceforge at:
|
D | ixgbevf.txt | 31 Driver ID Guide at: 42 For general information, go to the Intel support website at: 46 or the Intel Wired Networking project hosted by Sourceforge at:
|
D | igb.txt | 21 Driver ID Guide at: 57 - Using Jumbo frames at 10 or 100 Mbps is not supported and may result in 64 version of ethtool can be found at: 89 interrupt. The moderation value should be at least as large as the expected 119 For general information, go to the Intel support website at: 123 or the Intel Wired Networking project hosted by Sourceforge at:
|
D | i40e.txt | 24 Driver ID Guide at: 37 The driver is located in the menu structure at: 95 An excellent article on performance tuning can be found at: 107 For general information, go to the Intel support website at: 111 or the Intel Wired Networking project hosted by Sourceforge at:
|
D | ray_cs.txt | 7 802.11 compatible wireless network connectivity at 1 and 2 megabits/second. 10 bugs and limitations at the end of this document for more information. 15 source. My web page for the development of ray_cs is at 17 and I can be emailed at corey@world.std.com 21 The driver at my web page is intended to be used as an add on to 31 Information on card services is available at:
|
D | dccp.txt | 22 modules called CCIDs. Like pluggable TCP congestion control, at least one CCID 32 is at http://www.ietf.org/html.charters/dccp-charter.html 40 The known bugs are at: 87 DCCP_SOCKOPT_CCID is write-only and sets both the TX and RX CCIDs at the same 91 understood. This socket option takes as argument at least one uint8_t value, or 111 be enabled at the receiver, too with suitable choice of CsCov. 128 optlen must be set to at least sizeof(struct tfrc_rx_info). 131 optlen must be set to at least sizeof(struct tfrc_tx_info). 205 DCCP does not travel through NAT successfully at present on many boxes. This is
|
/linux-4.1.27/arch/cris/boot/compressed/ |
D | README | 11 burned into a flash or executed directly at the DRAM origin. 21 assumes the DRAM starts at 0x40000000 and that it is at least 8 MB, 22 so it puts its code at 0x40700000, and initial stack at 0x40800000.
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/fb/ |
D | gddr5.c | 38 int WL, CL, WR, at[2], dt, ds; in nvkm_gddr5_calc() local 60 at[0] = ram->next->bios.timing_20_2e_c0; in nvkm_gddr5_calc() 61 at[1] = ram->next->bios.timing_20_2e_30; in nvkm_gddr5_calc() 81 ram->mr[1] |= (at[0] & 0x03) << 4; in nvkm_gddr5_calc() 91 ram->mr[1] |= (at[1] & 0x03) << 4; in nvkm_gddr5_calc()
|
/linux-4.1.27/arch/arm/mach-sti/ |
D | Kconfig | 20 More information at Documentation/arm/STiH41x and 21 at Documentation/devicetree 32 Electronics family StiH415 parts, primarily targeted at set-top-box 42 Electronics family StiH416 parts, primarily targeted at set-top-box 52 Electronics family StiH407 parts, targetted at set-top-box
|
/linux-4.1.27/arch/powerpc/kernel/ |
D | io-workarounds.c | 114 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) \ argument 115 static ret iowa_##name at \ 124 #define DEF_PCI_AC_NORET(name, at, al, space, aa) \ argument 125 static void iowa_##name at \ 143 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) .name = iowa_##name, argument 144 #define DEF_PCI_AC_NORET(name, at, al, space, aa) .name = iowa_##name, argument
|
/linux-4.1.27/Documentation/cpu-freq/ |
D | boost.txt | 10 Reading or writing 1 does not mean that the system is boosting at this 11 very moment, but only that the CPU _may_ raise the frequency at it's 20 budget. The decision about boost disable/enable is made either at hardware 32 functionality at all, but a more fine-grained and dynamic control would 37 functionality at least for the benchmark's run-time the system will run 38 at a fixed frequency and results are reproducible again. 61 whole system (0) or will allow the software or hardware to boost at will 65 CPU to boost at their discretion. Some implementations take external 77 Though the per CPU existence hints at a more fine grained control, the 91 Technically it is possible to switch the boosting functionality at least
|
D | user-guide.txt | 136 the processor shall run at. 146 mounted it at /sys, the cpufreq interface is located in a subdirectory 151 frequency the processor can run at(in kHz) 153 frequency the processor can run at(in kHz) 181 the CPU actually runs at. 204 at.
|
/linux-4.1.27/arch/x86/kernel/cpu/ |
D | perf_event_intel_ds.c | 503 struct bts_record *at, *top; in intel_pmu_drain_bts_buffer() local 515 at = (struct bts_record *)(unsigned long)ds->bts_buffer_base; in intel_pmu_drain_bts_buffer() 518 if (top <= at) in intel_pmu_drain_bts_buffer() 534 if (perf_output_begin(&handle, event, header.size * (top - at))) in intel_pmu_drain_bts_buffer() 537 for (; at < top; at++) { in intel_pmu_drain_bts_buffer() 538 data.ip = at->from; in intel_pmu_drain_bts_buffer() 539 data.addr = at->to; in intel_pmu_drain_bts_buffer() 973 struct pebs_record_core *at, *top; in intel_pmu_drain_pebs_core() local 979 at = (struct pebs_record_core *)(unsigned long)ds->pebs_buffer_base; in intel_pmu_drain_pebs_core() 995 n = top - at; in intel_pmu_drain_pebs_core() [all …]
|
/linux-4.1.27/Documentation/filesystems/ |
D | sharedsubtree.txt | 52 The above command replicates the mount at /mnt to the mountpoint /tmp 61 Now let's say we mount a device at /tmp/a 70 Note that the mount has propagated to the mount at /mnt as well. 89 the new mount at /tmp becomes a shared mount and it is a replica of 90 the mount at /mnt. 92 Now let's make the mount at /tmp; a slave of /mnt 104 Note the mount event has propagated to the mount at /tmp 106 However let's see what happens if we mount something on the mount at /tmp 115 Note how the mount event has not propagated to the mount at 126 let's say we have a mount at /mnt and we make is unbindable [all …]
|
D | gfs2.txt | 20 The dlm is found at linux/fs/dlm/ 23 at the URL above. 39 The following man pages can be found at the URL above:
|
D | omfs.txt | 16 More information is available at: 21 omfsprogs, available at: 79 hashed then prepended into the bucket list beginning at OMFS_DIR_START. 84 A file is an omfs_inode structure followed by an extent table beginning at
|
D | xfs.txt | 12 Refer to the documentation at http://oss.sgi.com/projects/xfs/ 102 to create inodes at any location in the filesystem, 136 systems, then it may be reduced at some cost to performance 148 stripe unit configured at mkfs time. 161 Data allocations will not be aligned at stripe unit 231 None at present. 255 The interval at which the filesystem flushes metadata 259 The interval at which the filesystem ages filestreams cache 265 The interval at which the background scanning for inodes 335 is to control the rate at which the allocator moves between [all …]
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | nested-vmx.txt | 20 available at: 234 Abel Gordon, abelg <at> il.ibm.com 235 Nadav Har'El, nyh <at> il.ibm.com 236 Orit Wasserman, oritw <at> il.ibm.com 237 Ben-Ami Yassor, benami <at> il.ibm.com 238 Muli Ben-Yehuda, muli <at> il.ibm.com 241 Anthony Liguori, aliguori <at> us.ibm.com 242 Mike Day, mdday <at> us.ibm.com 243 Michael Factor, factor <at> il.ibm.com 244 Zvi Dubitzky, dubi <at> il.ibm.com [all …]
|
D | msr.txt | 29 guaranteed to update this data at the moment of MSR write. 37 sec: number of seconds for wallclock at time of boot. 39 nsec: number of nanoseconds for wallclock at time of boot. 70 The hypervisor may update this structure at any time it sees fit until 79 tsc_timestamp: the tsc value at the current VCPU at the time 85 time at the time this structure was last updated. Unit is 175 the hypervisor at the time of asynchronous page fault (APF) 217 The hypervisor may update this structure at any time it sees fit until 243 written to by the hypervisor, typically at the time of interrupt 258 However, hypervisor can set and clear this memory bit at any time:
|
D | mmu.txt | 59 addresses for the guest. Different translations are required at different 85 host at any time. 115 Leaf ptes point at guest pages. 139 The linear range starts at (gfn << PAGE_SHIFT) and its size is determined 183 at the shadow page structure. 184 sptes in spt point either at guest pages, or at lower-level shadow pages. 186 at __pa(sp2->spt). sp2 will point back at sp1 through parent_pte. 196 pdptrs) are now pointing at the page. While this counter is nonzero, the 199 The reverse mapping for the pte/ptes pointing at this page's spt. If 200 parent_ptes bit 0 is zero, only one spte points at this pages and [all …]
|
/linux-4.1.27/drivers/net/wimax/i2400m/ |
D | Kconfig | 30 By default, this is disabled at runtime and can be 31 selectively enabled at runtime for different parts of the 34 If set at zero, this will compile out all the debug code. 36 It is recommended that it is left at 8.
|
/linux-4.1.27/Documentation/scsi/ |
D | scsi-generic.txt | 31 The most recent documentation of the sg driver is kept at the Linux 36 and pdf. This document can also be found at: 40 be found at http://sg.danny.cz/sg/. A larger version 41 is at: http://sg.danny.cz/sg/p/scsi-generic_long.txt. 44 found at http://www.torque.net/sg/p/original/SCSI-Programming-HOWTO.txt 51 can be found at the top of the /usr/src/linux/drivers/scsi/sg.c file. 54 part can be found at http://www.tldp.org/HOWTO/SCSI-2.4-HOWTO . 64 capabilities. They can be found at: http://sg.danny.cz/sg/sg3_utils.html and 67 Another approach is to look at the applications that use the sg driver.
|
D | bfa.txt | 34 The latest Firmware package for 3.0.2.2 bfa driver can be found at: 49 be found at: 65 driver can be found at: 80 For general product and support info, go to the Brocade website at:
|
D | FlashPoint.txt | 15 drivers and information will be available on October 15th at 29 System, Emacs, and TCP/IP networking. Further information is available at 52 headquartered at 34551 Ardenwood Blvd., Fremont, CA. 107 BusLogic is not prepared at this time to release the information necessary 112 are people at BusLogic who would rather not release the details of the 113 FlashPoint architecture at all, that debate has not yet been settled either 127 upgrade has been set at US $45 plus shipping and handling, and the upgrade 129 be reached by electronic mail at techsup@buslogic.com, by Voice at +1 408 130 654-0760, or by FAX at +1 408 492-1542. 136 price for this upgrade has been set at US $65 plus shipping and handling. [all …]
|
D | g_NCR5380.txt | 11 modes at a time but it does support both of these chips at the same time. 12 The next release of this driver will support port & memory mapped cards at 36 /proc/scsi/g_NCR5380/x where x is the scsi card number as detected at boot
|
/linux-4.1.27/drivers/net/ethernet/intel/ |
D | Kconfig | 30 Use the above information and the Adapter & Driver ID Guide at: 52 to the Adapter & Driver ID Guide at: 57 website at: 76 identify your adapter, go to the Adapter & Driver ID Guide at: 81 website at: 97 to the Adapter & Driver ID Guide at: 102 website at: 138 Driver ID Guide at: 143 website at: 160 to the Adapter & Driver ID Guide at: [all …]
|
/linux-4.1.27/security/apparmor/ |
D | Kconfig | 12 distribution) and further information may be found at 25 at boot. If this option is set to 0 (zero), the AppArmor 26 kernel parameter will default to 0, disabling AppArmor at 28 kernel parameter will default to 1, enabling AppArmor at
|
/linux-4.1.27/drivers/cpufreq/ |
D | Kconfig.x86 | 24 For details, take a look at: 44 For details, take a look at <file:Documentation/cpu-freq/>. 81 For details, take a look at <file:Documentation/cpu-freq/>. 91 For details, take a look at <file:Documentation/cpu-freq/>. 103 For details, take a look at <file:Documentation/cpu-freq/>. 113 For details, take a look at <file:Documentation/cpu-freq/>. 134 For details, take a look at <file:Documentation/cpu-freq/>. 160 For details, take a look at <file:Documentation/cpu-freq/>. 179 For details, take a look at <file:Documentation/cpu-freq/>. 202 For details, take a look at <file:Documentation/cpu-freq/>. [all …]
|
D | Kconfig | 15 For details, take a look at <file:Documentation/cpu-freq>. 54 This option sets which CPUFreq governor shall be loaded at 91 governor. If unsure have a look at the help section of the 103 governor. If unsure have a look at the help section of the 140 For details, take a look at <file:Documentation/cpu-freq/>. 158 For details, take a look at linux/Documentation/cpu-freq. 182 For details, take a look at linux/Documentation/cpu-freq. 231 For details, take a look at <file:Documentation/cpu-freq/>. 245 For details, take a look at <file:Documentation/cpu-freq/>. 255 For details, take a look at <file:Documentation/cpu-freq/>. [all …]
|
D | Kconfig.powerpc | 7 For details, take a look at <file:Documentation/cpu-freq/>. 16 frequencies. Using PMI, the processor will not only be able to run at 17 lower speed, but also at lower core voltage.
|
/linux-4.1.27/drivers/net/ethernet/chelsio/ |
D | Kconfig | 32 our website at <http://www.chelsio.com>. 34 For customer support, please visit our customer support page at 59 our website at <http://www.chelsio.com>. 61 For customer support, please visit our customer support page at 79 our website at <http://www.chelsio.com>. 81 For customer support, please visit our customer support page at 120 our website at <http://www.chelsio.com>. 122 For customer support, please visit our customer support page at
|
/linux-4.1.27/scripts/ |
D | unifdef.c | 746 static Linetype op_strict(int *p, int v, Linetype at, Linetype bt) { in op_strict() argument 747 if(at == LT_IF || bt == LT_IF) return (LT_IF); in op_strict() 750 static Linetype op_lt(int *p, Linetype at, int a, Linetype bt, int b) { in op_lt() argument 751 return op_strict(p, a < b, at, bt); in op_lt() 753 static Linetype op_gt(int *p, Linetype at, int a, Linetype bt, int b) { in op_gt() argument 754 return op_strict(p, a > b, at, bt); in op_gt() 756 static Linetype op_le(int *p, Linetype at, int a, Linetype bt, int b) { in op_le() argument 757 return op_strict(p, a <= b, at, bt); in op_le() 759 static Linetype op_ge(int *p, Linetype at, int a, Linetype bt, int b) { in op_ge() argument 760 return op_strict(p, a >= b, at, bt); in op_ge() [all …]
|
/linux-4.1.27/Documentation/video4linux/ |
D | fimc.txt | 12 availability, LCD writeback support, etc. The driver is located at 27 - dynamic pipeline re-configuration at runtime (re-attachment of any FIMC 60 The driver supports Media Controller API as defined at 65 to the SoC peripheral camera input at runtime and optionally to control internal 77 V4L2 memory-to-memory interface at /dev/video? device node. This is standalone 85 The driver supports V4L2 Video Capture Interface as defined at: 95 node is also created per each available and enabled at the platform level 107 When we configure these devices through sub-device API at user space, the 111 devices belonging to the pipeline is done at the video node driver. 114 when the last configuration steps at the video node is performed. [all …]
|
D | README.cx88 | 18 at least for some standards. 49 (2) You can try to create a new entry yourself, have a look at 52 (3) Or you can mail me the config information. I need at least the 59 know which one the card has you can also have a look at the
|
D | cafe_ccic | 6 RGB565, and RGB444 formats. (Anybody looking at the code will see RGB32 as 9 sensor is known to work with this controller at this time. 23 then worst-case-sized buffers will be allocated at module load time. 29 allocated at run time, they will be sized appropriately for the current
|
D | README.davinci-vpbe | 41 controller port is done at init time based on default output and standard 42 selection or at run time when application change the output through 56 setting timings at LCD controller port when external encoders are connected 57 at the port or LCD panel timings required. When external encoder/LCD panel 86 - add support for selecting external encoder as default at probe time.
|
D | hauppauge-wintv-cx88-ir.txt | 30 GP_SAMPLE register is at 0x35C058 32 Bits are then right shifted into the GP_SAMPLE register at the specified 41 over time, so don't assume any sample starts at any particular place.
|
D | README.cpia2 | 7 stream at up to vga size. It implements the Video4Linux interface as much as 37 available at compile time. 71 If the driver is compiled into the kernel, at boot time specify them 81 The compression engine starts out at maximum compression, and will 89 any alternate at frame rates down to 15fps. For lower frame rates, it may 108 this case use 2 buffers. You are probably not reading at the full frame rate.
|
/linux-4.1.27/arch/x86/ |
D | Makefile.um | 34 echo $(call cc-option,-fno-unit-at-a-time); \ 35 else echo $(call cc-option,-funit-at-a-time); fi ;) 59 KBUILD_CFLAGS += $(call cc-option,-funit-at-a-time)
|
/linux-4.1.27/drivers/devfreq/ |
D | Kconfig | 40 values to the governor with data field at devfreq_add_device(). 45 Sets the frequency at the maximum available frequency. 48 at any time. 53 Sets the frequency at the minimum available frequency. 56 at any time. 61 Sets the frequency at the user specified one. 65 given at the initialization.
|
/linux-4.1.27/Documentation/ |
D | crc32.txt | 31 Just like with ordinary division, you proceed one digit (bit) at a time. 49 Notice how, to get at bit 32 of the shifted remainder, we look 50 at bit 31 of the remainder *before* shifting it. 55 Also, to add the CRC to a message, we need a 32-bit-long hole for it at 56 the end, so we have to add 32 extra cycles shifting in zeros at the 84 We can do it 8 bits at a time rather than 1 bit at a time: 103 word at a time and increase the inner loop count to 32. 106 bulk of a message byte-at-a-time and adding bit-at-a-time processing 107 for any fractional bytes at the end. 110 the byte-at-a-time table method, popularized by Dilip V. Sarwate, [all …]
|
D | robust-futex-ABI.txt | 17 2) internal kernel code at exit, to handle any listed locks held 53 The first word in the memory structure at 'head' contains a 71 Each 'lock entry' on the single linked list starting at 'head' consists 74 entry', at an offset from the 'lock entry' specified by the 'offset' 85 'lock entry' on this list, with its associated 'lock word' at the 112 up locks held at the time of (a perhaps unexpectedly) exit. 122 memory, on various data structures, at a given point in time. Only those 127 at different times by any of the threads with access to that region. The 142 of the 'lock word', to the linked list starting at 'head', and 154 the list starting at 'head'. For each such address, if the bottom 29 [all …]
|
D | mono.txt | 13 packages for several distributions can be found at: 17 Instructions for compiling Mono can be found at: 34 to be run at system startup: 44 # is not needed at all.
|
D | edac.txt | 22 and maintained at sourceforge.net. When it was pushed into 2.6.16 for the 25 The bluesmoke project at sourceforge.net is now utilized as a 'staging area' 345 must occur in userland at this time. 378 must occur in userland at this time. 416 On Header Type 00 devices the primary status is looked at 420 looked at to see if parity occurred on the bus on the other side of 547 the 'test_device_edac' device (found at the bluesmoke.sourceforget.net website) 563 The test_device_edac device adds at least one of its own custom control: 623 The 'test_device_edac' sample driver is located at the 634 were done at i7core_edac driver. This chapter will cover those differences [all …]
|
D | bus-virt-phys-mapping.txt | 15 at memory addresses, and in this case we actually want the third, the 47 Now, that looks simple enough. However, when you look at the same thing from 119 So why do we care about the physical address at all? We do need the physical 139 conceptually in the same memory space as "real memory" at all, so you cannot 148 * read first 32 bits from ISA memory at 0xC0000, aka 155 * remap framebuffer PCI memory area at 0xFC000000, 169 /* get the 6-byte Ethernet address at ISA address E000:0040 */ 192 at the top of their source files, and then they can use the right names
|
D | bad_memory.txt | 30 memmap is already in the kernel and usable as kernel-parameter at 37 Example: memtest86+ reported here errors at address 0x18691458, 0x18698424 and
|
D | robust-futexes.txt | 23 completely forgets that there ever was a futex at that address. This 62 - they have to scan _every_ vma at sys_exit() time, per thread! 88 registration happens at most once per thread lifetime]. At do_exit() 92 In the common case, at do_exit() time, there is no list registered, so 101 The list is guaranteed to be private and per-thread at do_exit() time, 123 - it's much, much faster: at thread exit time, there's no need to loop 158 (1 million held locks are unheard of - we expect at most a handful of 159 locks to be held at a time. Nevertheless it's nice to know that this 187 If a futex is found to be held at exit time, the kernel sets the 209 i386 and x86_64 syscalls are wired up at the moment, and Ulrich has
|
D | unicode.txt | 5 The current version can be found at: 69 they are added at U+23BA, U+23BB, U+23BC, U+23BD. Linux now uses the 93 For more information, contact them at: 99 located it at the end, on a 16-cell boundary in keeping with standard 103 Registry. The normative reference is at: 165 The ConScript Unicode Registry is accessible at: 169 The ranges used fall at the low end of the End User Zone and can hence
|
D | sysfs-rules.txt | 30 - sysfs is always at /sys 47 at device creation and removal 48 - the unique key to the device at that point in time 55 kernel used at event time. 88 Always look at the parent devices themselves for determining device 108 classification directories into one place at /sys/subsystem, 113 "devices" directory at /sys/subsystem/<name>/devices. 126 The converted block subsystem at /sys/class/block or 128 at the same level, never in a hierarchy. Assuming the block subsystem to
|
D | bcache.txt | 4 Wiki and git repositories are at: 12 designed to avoid random writes at all costs; it fills up an erase block 16 off, but can be switched on and off arbitrarily at runtime. Bcache goes to 25 Since random IO is what SSDs excel at, there generally won't be much benefit 44 make-bcache has the ability to format multiple devices at the same time - if 45 you format your backing devices and cache device at the same time, you won't 74 You can control bcache devices through sysfs at /sys/block/bcache<N>/bcache . 101 partition, the bcache directory would be at /sys/block/sdb/sdb2/bcache) 119 invalidating the data at that lba in the cache (i.e. the same thing we do for 198 Available at /sys/block/<bdev>/bcache, /sys/block/bcache*/bcache and [all …]
|
/linux-4.1.27/Documentation/security/ |
D | tomoyo.txt | 5 LiveCD-based tutorials are available at 20 User <-> Kernel interface documentation is available at 23 Materials we prepared for seminars and symposiums are available at 49 multiple LSM modules at the same time. We feel sorry that you have to give up 53 version of TOMOYO, available at http://tomoyo.sourceforge.jp/1.7/ .
|
/linux-4.1.27/Documentation/devicetree/bindings/clock/ti/ |
D | mux.txt | 23 into the register, instead indexing begins at 1. The optional property 24 "index-starts-at-one" modified the scheme as follows: 47 - ti,index-starts-at-one : valid input select programming starts at 1, not 59 ti,index-starts-at-one;
|
D | divider.txt | 17 ti,index-starts-at-one - valid divisor values start at 1, not the default 69 - ti,index-starts-at-one : valid divisor programming starts at 1, not zero, 86 ti,index-starts-at-one; 104 ti,index-starts-at-one;
|
/linux-4.1.27/Documentation/cgroups/ |
D | memcg_test.txt | 15 Allocated at boot or memory hotplug. Freed at memory hot removal. 18 Allocated at swapon(). Freed at swapoff(). 25 a page/swp_entry may be charged (usage += PAGE_SIZE) at 45 at this point, usage += PAGE_SIZE. 54 Anonymous page is newly allocated at 77 Finally, at task exit, 81 Page Cache is charged at 97 - Both on radix-tree and SwapCache. This happens at swap-in 190 create/delete following groups at random while jobs are running. 208 call path of swap-in at swapoff is not same as usual swap-in path.. [all …]
|
/linux-4.1.27/Documentation/timers/ |
D | hpet.txt | 4 by Intel and Microsoft which can be found at 8 Each HPET has one fixed-rate counter (at 10+ MHz, hence "High Precision") 10 each of which can generate oneshot interrupts and at least one of which has 17 role. Many x86 BIOS writers don't route HPET interrupts at all, which
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/ |
D | mpic.txt | 19 Revision Registers BRR1 and BRR2 at offset 0x0 and 54 directed at other cores. This ensures that the client 71 non-IPI interrupts to a single CPU at a time (EG: Freescale MPIC). 116 region. So interrupt 0 is at offset 0x0, 117 interrupt 1 is at offset 0x20, and so on. 165 * registers at 0x5_0560. 168 * at 0x5_0000. 175 * at 0x5_0000, and so the i2c vector/priority registers 176 * are at 0x5_0560.
|
/linux-4.1.27/Documentation/trace/ |
D | uprobetracer.txt | 34 @ADDR : Fetch memory at ADDR (ADDR should be in userspace) 35 @+OFFSET : Fetch memory at OFFSET (OFFSET from same file as PATH) 39 +|-offs(FETCHARG) : Fetch memory at FETCHARG +|- offs address.(**) 71 as below: (sets a uprobe at an offset of 0x4245c0 in the executable /bin/bash) 92 at the probed text address. Probe zfree function in /bin/zsh: 100 0x46420 is the offset of zfree in object /bin/zsh that is loaded at 110 in the object. We can see the events that are registered by looking at the 158 and contents of ax register being 79. And uretprobe was triggered with ip at 159 0x446540 with counterpart function entry at 0x446420.
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | omap54xx-clocks.dtsi | 124 ti,index-starts-at-one; 167 ti,index-starts-at-one; 197 ti,index-starts-at-one; 222 ti,index-starts-at-one; 231 ti,index-starts-at-one; 240 ti,index-starts-at-one; 249 ti,index-starts-at-one; 258 ti,index-starts-at-one; 267 ti,index-starts-at-one; 276 ti,index-starts-at-one; [all …]
|
D | aks-cdu.dts | 33 linux,rs485-enabled-at-boot-time; 39 linux,rs485-enabled-at-boot-time; 45 linux,rs485-enabled-at-boot-time;
|
D | dra7xx-clocks.dtsi | 211 ti,index-starts-at-one; 231 ti,index-starts-at-one; 242 ti,index-starts-at-one; 274 ti,index-starts-at-one; 300 ti,index-starts-at-one; 342 ti,index-starts-at-one; 376 ti,index-starts-at-one; 410 ti,index-starts-at-one; 421 ti,index-starts-at-one; 455 ti,index-starts-at-one; [all …]
|
D | omap44xx-clocks.dtsi | 156 ti,index-starts-at-one; 193 ti,index-starts-at-one; 225 ti,index-starts-at-one; 236 ti,index-starts-at-one; 255 ti,index-starts-at-one; 292 ti,index-starts-at-one; 310 ti,index-starts-at-one; 327 ti,index-starts-at-one; 343 ti,index-starts-at-one; 375 ti,index-starts-at-one; [all …]
|
D | am43xx-clocks.dtsi | 218 ti,index-starts-at-one; 229 ti,index-starts-at-one; 240 ti,index-starts-at-one; 258 ti,index-starts-at-one; 276 ti,index-starts-at-one; 294 ti,index-starts-at-one; 313 ti,index-starts-at-one; 596 ti,index-starts-at-one; 672 ti,index-starts-at-one;
|
/linux-4.1.27/net/wimax/ |
D | Kconfig | 33 By default, debug messages are disabled at runtime and can 37 If set at zero, this will compile out all the debug code. 39 It is recommended that it is left at 8.
|
/linux-4.1.27/arch/mips/netlogic/ |
D | Kconfig | 11 pointer to the kernel. The corresponding DTS file is at 21 pointer to the kernel. The corresponding DTS file is at 31 pointer to the kernel. The corresponding DTS file is at 41 pointer to the kernel. The corresponding DTS file is at 50 pointer to the kernel. The corresponding DTS file is at
|
/linux-4.1.27/security/selinux/ |
D | Kconfig | 17 to be disabled at boot. If this option is selected, SELinux 32 'selinux', which allows SELinux to be disabled at boot. If this 34 default to 0, disabling SELinux at bootup. If this option is 36 enabling SELinux at bootup. 46 allows SELinux to be disabled at runtime prior to the policy load. 92 'checkreqprot=' boot parameter. It may also be changed at runtime 104 to userspace via /selinux/policyvers and used at policy load time. 130 running 'checkpolicy -V'. Or look at what policy you have
|
/linux-4.1.27/drivers/dma/ |
D | s3c24xx-dma.c | 172 struct list_head *at; member 223 struct s3c24xx_txd *at; member 381 struct s3c24xx_txd *txd = s3cchan->at; in s3c24xx_dma_getbytes_chan() 453 struct s3c24xx_sg *dsg = list_entry(txd->at, struct s3c24xx_sg, node); in s3c24xx_dma_start_next_sg() 519 s3cchan->at = txd; in s3c24xx_dma_start_next_txd() 526 txd->at = txd->dsg_list.next; in s3c24xx_dma_start_next_txd() 679 txd = s3cchan->at; in s3c24xx_dma_irq() 682 if (!list_is_last(txd->at, &txd->dsg_list)) { in s3c24xx_dma_irq() 683 txd->at = txd->at->next; in s3c24xx_dma_irq() 688 s3cchan->at = NULL; in s3c24xx_dma_irq() [all …]
|
/linux-4.1.27/arch/arm/nwfpe/ |
D | softfloat-macros | 9 International Computer Science Institute, located at Suite 600, 1947 Center 13 processor in collaboration with the University of California at Berkeley, 88 _plus_ the number of bits given in `count'. The shifted result is at most 89 64 nonzero bits; this is stored at the location pointed to by `z0Ptr'. The 98 integer part of the result is returned at the location pointed to by 100 described above, and is returned at the location pointed to by `z1Ptr'.) 138 which are stored at the locations pointed to by `z0Ptr' and `z1Ptr'. 173 nonzero. The result is broken into two 64-bit pieces which are stored at 213 at most 128 nonzero bits; these are broken into two 64-bit pieces which are 214 stored at the locations pointed to by `z0Ptr' and `z1Ptr'. The bits shifted [all …]
|
/linux-4.1.27/Documentation/usb/ |
D | usb-serial.txt | 13 Currently the driver can handle up to 256 different serial interfaces at 45 Connect Tech's Support Department at support@connecttech.com 85 There is a webpage and mailing lists for this portion of the driver at: 89 Kroah-Hartman at greg@kroah.com 114 To use Pocket IE, follow the instructions given at 117 packets unlike Win98. Another modification is required at least for the 137 NOTE: This has NOT been tested. Use at your own risk. 168 Warner at warner@lothar.com 178 have been pretty thoroughly tested at various baud rates with 8-N-1 186 More information is available at: [all …]
|
D | usb-help.txt | 8 mirrors at http://usb.in.tum.de/linux-usb/ 14 The Linux-USB mailing list is at linux-usb@vger.kernel.org
|
D | rio.txt | 38 power well at all. 48 The main page for the project is hosted at sourceforge.net in the following 50 sourceforge home page at: <http://sourceforge.net/projects/rio500/>. 91 I/O ports at .... 99 Memory at ..... 129 That's it. The Rio500 Utils at: http://rio500.sourceforge.net should
|
D | ehci.txt | 57 at this writing no Linux drivers have been using that support. 78 behave quite right at the moment. 100 take over (at lower speed) all the devices that were previously handled 117 pending, usually one qtd per urb. (Look at it with 131 periodic transfers) use different encodings when operating at high speed. 150 and at most 13 of those fit into one USB 2.0 microframe. Eight USB 2.0 160 At this writing, individual USB 2.0 devices tend to max out at around 165 at around 28 MByte/sec aggregate transfer rate. While this is clearly 166 enough for a single device at 20 MByte/sec, putting three such devices 174 more silicon real estate at the problem so that new motherboard chip
|
/linux-4.1.27/Documentation/devicetree/bindings/serial/ |
D | rs485.txt | 16 - linux,rs485-enabled-at-boot-time: empty property telling to enable the rs485 17 feature at boot time. It can be disabled later with proper ioctl. 28 linux,rs485-enabled-at-boot-time;
|
D | qcom,msm-uart.txt | 6 character at a time. 17 A uart device at 0xa9c00000 with interrupt 11.
|
/linux-4.1.27/arch/mips/jazz/ |
D | Kconfig | 9 the MIPS architecture, check out the Linux/MIPS FAQ on the WWW at 21 the MIPS architecture, check out the Linux/MIPS FAQ on the WWW at 32 the MIPS architecture, check out the Linux/MIPS FAQ on the WWW at
|
/linux-4.1.27/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 304 The sources are also available from cvs at the project's cvs page, 721 appear to hang. In reality, it's waiting for a telnet to connect, at 824 Look at the boot log to see what pty it got (this example will assume 980 You can also add devices to a UML and remove them at runtime. See the 1066 You should be able to ping the host at this point. 1092 is for UML to just blindly throw all packets at the host and let it 1266 These were pointed out by Tim Robinson <timro at trkr dot net> in 1339 devices at boot time. 1567 renamed so the network weenies of the world would stop growling at me. 1679 you specified on the command line. These problems will be fixed at [all …]
|
/linux-4.1.27/fs/ext3/ |
D | namei.c | 125 struct dx_entry *at; member 333 struct dx_entry *at, *entries, *p, *q, *m; in dx_probe() local 420 at = entries; in dx_probe() 424 if (dx_get_hash(++at) > hash) in dx_probe() 426 at--; in dx_probe() 430 assert (at == p - 1); in dx_probe() 433 at = p - 1; in dx_probe() 434 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at))); in dx_probe() 437 frame->at = at; in dx_probe() 439 if (!(bh = ext3_dir_bread(NULL, dir, dx_get_block(at), 0, err))) { in dx_probe() [all …]
|
D | Kconfig | 12 at the time the system crashed, and can ensure that your file system 26 (available at <http://sourceforge.net/projects/e2fsprogs/>). 60 <http://acl.bestbits.at/> for details). 75 Linux website <http://acl.bestbits.at/>.
|
/linux-4.1.27/Documentation/isdn/ |
D | README.hfc-pci | 24 at the hisax module load command line. Supply the load command with the desired 27 There tree cards installed in your machine at IO-base addresses 0xd000, 0xd400 29 If you want to use the card at 0xd400 standalone you should supply the insmod 31 If you want to use all three cards, but the order needs to be at 0xdc00,0xd400,
|
D | README.FAQ | 10 you can have a look at my website: 20 Please have a look at the FAQ before posting anything in the Mailinglist,
|
/linux-4.1.27/Documentation/fb/ |
D | sh7760fb.txt | 11 * Framebuffer memory must be a large chunk allocated at the top 13 make the driver a module since at runtime it may become impossible to 20 a) if you're using 15/16bit color modes at >= 640x480 px resolutions, 35 DMARSRA register somewhere at boot). 49 Suggest you take a closer look at the SH7760 Manual, Section 30.
|
/linux-4.1.27/Documentation/cris/ |
D | README | 51 (not all interfaces are available at the same time due to chip pin 111 ttyS0 at 0xb0000060 is a builtin UART with DMA 112 ttyS1 at 0xb0000068 is a builtin UART with DMA 113 ttyS2 at 0xb0000070 is a builtin UART with DMA 114 ttyS3 at 0xb0000078 is a builtin UART with DMA 115 Axis flash mapping: 200000 at 50000000 116 Axis flash: Found 1 x16 CFI device at 0x0 in 16 bit mode 117 Amd/Fujitsu Extended Query Table v1.0 at 0x0040
|
/linux-4.1.27/Documentation/devicetree/bindings/input/ |
D | imx-keypad.txt | 20 - pinctrl-names: The definition can be found at 23 - pinctrl-0: The definition can be found at 26 - linux,keymap: The definition can be found at
|
D | atmel,maxtouch.txt | 17 starting at the LSB. Linux keycodes are defined in 20 Note: the numbering of the GPIOs and the bit they start at varies between
|
D | matrix-keymap.txt | 1 A simple common binding for matrix-connected key boards. Currently targeted at 3 standardized interface at this time.
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-class-net-grcan | 11 or set by the module parameter grcan.enable0 and can be read at 23 or set by the module parameter grcan.enable1 and can be read at 34 set by the module parameter grcan.select and can be read at
|
D | pstore | 40 persistent storage until at least this amount is reached. 43 Pstore only supports one backend at a time. If multiple 45 set by passing the pstore.backend= argument to the kernel at
|
D | sysfs-bus-pci-drivers-ehci_hcd | 16 at full speed, which can be accomplished by forcing the 24 port 4 on bus 2 to run at full speed: 40 connect at full speed.
|
/linux-4.1.27/Documentation/devicetree/bindings/i2c/ |
D | i2c-exynos5.txt | 4 at various speeds ranging from 100khz to 3.4Mhz. 30 -> If not specified, the bus operates in fast-speed mode at 31 at 100khz.
|
/linux-4.1.27/Documentation/arm/sunxi/ |
D | clocks.txt | 49 you can find it at 53 The authoritative source for information at this time is the ccmu driver 54 released by Allwinner, you can find it at
|
/linux-4.1.27/Documentation/block/ |
D | ioprio.txt | 36 IOPRIO_CLASS_IDLE: This is the idle scheduling class, processes running at this 48 are inherited on fork, so you can use ionice to start the process at a given 53 will run ls at the best-effort scheduling class at the highest priority. 58 will change pid 100 to run at the realtime scheduling class, at priority 2.
|
D | cfq-iosched.txt | 71 This parameter forces idling at the CFQ group level instead of CFQ 79 multiple queues in the group at the same time and achieve higher throughput 154 whole is entitled to at its parent's level while the latter two 174 compete with. They always get 100% of what the cgroup won at the 189 Distribution below root. The total active weight at this level is 197 the implicit leaf node. The total active weight at this level is 210 request queue at a time. In such scenario, it is not possible to measure time 214 single queue and also allow dispatch from multiple cfq queue at the same time. 254 media which can support higher queue depth (multiple requests at in 255 flight at a time), then it cuts down on idling of individual queues and [all …]
|
/linux-4.1.27/Documentation/thermal/ |
D | exynos_thermal | 32 TI1: Trimming info for 25 degree Celsius (stored at TRIMINFO register) 33 Temperature code measured at 25 degree Celsius which is unchanged 34 TI2: Trimming info for 85 degree Celsius (stored at TRIMINFO register) 35 Temperature code measured at 85 degree Celsius which is unchanged
|
/linux-4.1.27/Documentation/leds/ |
D | ledtrig-oneshot.txt | 12 event, while in the latter it keeps blinking at constant rate, as to signal 26 delay_on - specifies for how many milliseconds the LED has to stay at 30 delay_off - specifies for how many milliseconds the LED has to stay at 46 echo 33 > delay_on # blink at 1 / (33 + 33) Hz on continuous traffic
|
/linux-4.1.27/drivers/net/wireless/p54/ |
D | Kconfig | 11 These devices require softmac firmware which can be found at 23 These devices require softmac firmware which can be found at 37 This driver requires softmac firmware which can be found at 61 file is put at the right place. (usually /lib/firmware.)
|
/linux-4.1.27/Documentation/devicetree/bindings/net/ |
D | allwinner,sun4i-mdio.txt | 11 Example at the SoC level: 19 And at the board level:
|
D | marvell-orion-mdio.txt | 20 Example at the SoC level: 29 And at the board level:
|
/linux-4.1.27/Documentation/fmc/ |
D | identifiers.txt | 11 live at offset 0 of the EEPROM, and typically extends for a few hundred 17 paired at run time. EEPROM programming uses tools that are part of this 33 back at run time, but we are not able to either generate or parse more 108 The SDB entry point (which acts as a directory listing) cannot live at 112 record at address 256, 512 and 1024. 117 at the beginning of the storage device. If needed, you can also place 118 other files at a special offset (we sometimes do it for backward 128 EEPROM: the FRU information, at offset zero, with a suggested filename 140 the fine-delay driver, and must live at a known address of 0x1800. By 166 FRU information blob. The fd-calib file lives at offset 0x1800 and is
|
D | fmc-write-eeprom.txt | 24 at offset 0. 43 This is a real example: that writes 5 bytes at position 0x110: 49 [19983.391498] spec 0000:03:00.0: write 5 bytes at 0x0110 53 EEPROM image, at least if your mezzanines are being used in the White 59 the image starting at offset 0, it will deregister and register again
|
/linux-4.1.27/drivers/media/rc/keymaps/ |
D | Kconfig | 12 The ir-keytable program, available at v4l-utils package 14 userspace. Its available at
|
/linux-4.1.27/arch/x86/kernel/apic/ |
D | vector.c | 69 struct irq_cfg *alloc_irq_and_cfg_at(unsigned int at, int node) in alloc_irq_and_cfg_at() argument 71 int res = irq_alloc_desc_at(at, node); in alloc_irq_and_cfg_at() 77 cfg = irq_cfg(at); in alloc_irq_and_cfg_at() 82 cfg = alloc_irq_cfg(at, node); in alloc_irq_and_cfg_at() 84 irq_set_chip_data(at, cfg); in alloc_irq_and_cfg_at() 86 irq_free_desc(at); in alloc_irq_and_cfg_at() 90 static void free_irq_cfg(unsigned int at, struct irq_cfg *cfg) in free_irq_cfg() argument 94 irq_set_chip_data(at, NULL); in free_irq_cfg()
|
/linux-4.1.27/drivers/scsi/csiostor/ |
D | Kconfig | 11 our website at <http://www.chelsio.com>. 13 For customer support, please visit our customer support page at
|
/linux-4.1.27/fs/jffs2/ |
D | Kconfig | 12 available at <http://sources.redhat.com/jffs2/>. 22 enable a few assertions and will print debugging messages at the 25 areas which at one point needed debugging, but when the bugs were 29 messages at debug level 1 while the misbehaviour was occurring. 72 <http://acl.bestbits.at/> for details). 86 Linux website <http://acl.bestbits.at/>. 186 decompression) at the expense of size.
|
/linux-4.1.27/arch/m68k/hp300/ |
D | README.hp300 | 4 The Linux/HP web page is at <http://www.tazenda.demon.co.uk/phil/linux-hp/> 9 The serial console is probably broken at the moment but the Topcat/HIL keyboard
|
/linux-4.1.27/arch/arm/include/debug/ |
D | vexpress.S | 30 @ should use UART at 0x10009000 32 @ at 0x1c090000
|
/linux-4.1.27/drivers/infiniband/hw/cxgb4/ |
D | Kconfig | 10 our website at <http://www.chelsio.com>. 12 For customer support, please visit our customer support page at
|
/linux-4.1.27/arch/mn10300/kernel/ |
D | profile-low.S | 11 # 2 of the Licence, or (at your option) any later version. 30 # - intended to run at interrupt priority 1
|
D | mn10300-serial-low.S | 11 # 2 of the Licence, or (at your option) any later version. 37 # - intended to run at interrupt priority 1 (not affected by local_irq_disable) 60 # - intended to run at interrupt priority 1 (not affected by local_irq_disable) 107 # - intended to run at interrupt priority 1 (not affected by local_irq_disable)
|
/linux-4.1.27/Documentation/devicetree/ |
D | changesets.txt | 9 at once before emitting OF_RECONFIG notifiers. This is so that the 20 a set of changes. No changes to the active tree are made at this point. 25 ensures there can only be one editor at a time.
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | nfsd-admin-interfaces.txt | 8 which is normally mounted at /proc/fs/nfsd/. 22 udp and one tcp listener at port 2049 (see nfsd_init_socks). 27 are thrown away at that point.
|
/linux-4.1.27/Documentation/arm/ |
D | Porting | 1 Taken from list archive at http://lists.arm.linux.org.uk/pipermail/linux-arm-kernel/2001-July/00406… 18 virtual or physical addresses here, since the MMU will be off at 20 the kernel at this address to start it booting. This doesn't have 26 This must be pointing at RAM. The decompressor will zero initialise 68 always starts at zero, this is the maximum address that a user 85 it must be located at 32768 bytes into a 128MB region. Previous
|
/linux-4.1.27/Documentation/x86/ |
D | boot.txt | 152 following header at offset 0x01f1. The real-mode code can total up to 210 If the "HdrS" (0x53726448) magic number is not found at offset 0x202, 216 Real-mode kernel must be located at 0x90000. 232 (obligatory). Boot loaders who want to load the kernel at a 345 number string can be found at offset 0x1e00 in the kernel file. 406 - If 0, the protected-mode code is loaded at 0x10000. 407 - If 1, the protected-mode code is loaded at 0x100000. 440 loaded at 0x90000, it gets moved there later in the loading 448 if the real-mode code is loaded at 0x90000. 464 relocatable kernel at a nonstandard address it will have to modify [all …]
|
/linux-4.1.27/Documentation/sound/oss/ |
D | ESS1868 | 35 at the beginning and the 37 at the end.) 40 the MPU-401 MIDI port is located at 0x0330. IRQ is IRQ 5, DMA is channel 1.
|
D | CMI8330 | 44 sb: CMI8330 sb base located at 0x220 45 sb: CMI8330 mpu base located at 0x330 47 sb: ISAPnP reports CMI 8330 SoundPRO at i/o 0x220, irq 7, dma 1,5 64 you may get a better one I guess at http://www.roestock.demon.co.uk/isapnptools/.
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/ |
D | vic.txt | 22 represents single interrupt source, starting from source 0 at LSb and ending 23 at source 31 at MSb. A bit that is set means that the source is wired and
|
/linux-4.1.27/Documentation/blockdev/ |
D | floppy.txt | 7 at <http://fdutils.linux.lu/faq.html>. 14 lilo. This option can be typed at the boot prompt, or entered in the 18 at the lilo boot prompt (if you have a thinkpad): 76 The second floppy controller is assumed to be at <address>. 77 This option is not needed if the second controller is at address 97 later are OK. You also need at least a 486 to use nodma. 211 Additional parameters of the floppy driver can be configured at 217 The latest version can be found at fdutils homepage: 220 The fdutils releases can be found at: 229 me at Alain.Knaff@poboxes.com . If you post to Usenet, preferably use
|
/linux-4.1.27/lib/ |
D | Kconfig.kmemcheck | 20 will insert extra code at *every* read and write to tracked memory 24 or enable kmemcheck at boot-time. If the kernel is started with 28 prompt "kmemcheck: default mode at boot" 91 accesses where not all the bits are initialized at the same time.
|
/linux-4.1.27/net/sched/ |
D | act_mirred.c | 134 u32 at; in tcf_mirred() local 153 at = G_TC_AT(skb->tc_verd); in tcf_mirred() 158 if (!(at & AT_EGRESS)) { in tcf_mirred() 165 skb2->tc_verd = SET_TC_FROM(skb2->tc_verd, at); in tcf_mirred()
|
/linux-4.1.27/drivers/fmc/ |
D | Kconfig | 15 The framework was born outside of the kernel and at this time 17 is at git://ohwr.org/fmc-projects/fmc-bus.git . 25 that can be rewritten at run time and usef for matching
|
/linux-4.1.27/Documentation/i2c/busses/ |
D | i2c-piix4 | 6 Datasheet: Publicly available at the Intel website 11 SB700 register reference available at: 14 Datasheet: Publicly available at the AMD website 19 Datasheet: Publicly available at the SMSC website http://www.smsc.com 32 Forcibly enable the PIIX4 at the given address. EXTREMELY DANGEROUS! 89 device is located at 00:0f.0.
|
D | i2c-viapro | 5 Datasheet: Sometimes available at the VIA website 8 Datasheet: Sometimes available at the VIA website 39 Forcibly enable the SMBus at the given address. EXTREMELY DANGEROUS!
|
D | i2c-i801 | 33 Datasheets: Publicly available at the Intel website 64 The ICH chips contain at least SEVEN separate PCI functions in TWO logical 77 The ICH chips are quite similar to Intel's PIIX4 chip, at least in the 109 SMBus device at 00:1f.3 in lspci, and you can't figure out any way in the 138 Memory at fc000000 (32-bit, prefetchable) [size=32M] 145 and then add a case for your subdevice ID at the right place in
|
/linux-4.1.27/arch/m68k/ |
D | Kconfig.machine | 30 computers (yes, there is experimental support now, at least for part 106 is at <http://www.angelfire.com/ca2/tech68k/sun3.html>. 116 manufactured in Germany. There is an official Q40 home page at 330 Define the address that RAM starts at. On many platforms this is 332 platforms choose to setup their RAM at other addresses within the 340 kernel will try to probe the RAM size at runtime. This is not 348 put at the start of RAM, but it doesn't have to be. On ColdFire 378 Typically on m68k systems the kernel will not start at the base 381 processor vectors at the base of RAM and then the start of the 384 a system with the RAM based at address 0, and leaving enough room [all …]
|
/linux-4.1.27/arch/sh/lib/ |
D | memcpy-sh4.S | 27 ! Read a long word and write a long word at once 73 ! Finally, copy a byte at once, if necessary 100 ! Read a long word and write a long word at once 141 ! Finally, copy a byte at once, if necessary 192 ! Check for small copies, and if so do a simple byte at a time copy. 194 ! Deciding on an exact value of 'small' is not easy, as the point at which 196 ! cycle counts for differnet sizes using byte-at-a-time vs. optimised): 197 ! size byte-at-time long word byte 395 ! Size is at least 64 bytes, so will be going round the big loop at least once. 456 ! this can be reversed at the end, so we don't need to save any extra [all …]
|
/linux-4.1.27/drivers/net/ |
D | LICENSE.SRC | 1 Code in this directory written at the IDA Supercomputing Research Center 11 This software was developed at SRC for use in internal research, and the
|
/linux-4.1.27/drivers/infiniband/hw/cxgb3/ |
D | Kconfig | 10 our website at <http://www.chelsio.com>. 12 For customer support, please visit our customer support page at
|
/linux-4.1.27/Documentation/video4linux/cx88/ |
D | hauppauge-wintv-cx88-ir.txt | 30 GP_SAMPLE register is at 0x35C058 32 Bits are then right shifted into the GP_SAMPLE register at the specified 41 over time, so don't assume any sample starts at any particular place.
|
/linux-4.1.27/arch/powerpc/boot/dts/ |
D | digsy_mtc.dts | 10 * Free Software Foundation; either version 2 of the License, or (at your 76 compatible = "at,24c08"; 114 // 16-bit flash device at LocalPlus Bus CS0
|
D | pdm360ng.dts | 12 * Free Software Foundation; either version 2 of the License, or (at your 27 reg = <0x00000000 0x20000000>; // 512MB at 0 101 compatible = "at,24c01";
|
D | cm5200.dts | 9 * Free Software Foundation; either version 2 of the License, or (at your 79 // 16-bit flash device at LocalPlus Bus CS0
|
/linux-4.1.27/drivers/scsi/sym53c8xx_2/ |
D | sym_misc.h | 94 struct sym_quehead *at = head->flink; in sym_que_splice() local 99 last->flink = at; in sym_que_splice() 100 at->blink = last; in sym_que_splice()
|
/linux-4.1.27/drivers/net/plip/ |
D | Kconfig | 18 ports (the connectors at the computers with 25 holes) are connected 20 bits at a time (mode 0) or with special PLIP cables, to be used on 21 bidirectional parallel ports only, which can transmit 8 bits at a
|
/linux-4.1.27/Documentation/arm/SA1100/ |
D | Brutus | 14 must be loaded at 0xc0008000 in Brutus's memory and execution started at 58 some drivers in order to drive already inserted cards at boot time with
|
/linux-4.1.27/Documentation/x86/x86_64/ |
D | fake-numa-for-cpusets | 25 Faking node 0 at 0000000000000000-0000000020000000 (512MB) 26 Faking node 1 at 0000000020000000-0000000040000000 (512MB) 27 Faking node 2 at 0000000040000000-0000000060000000 (512MB) 28 Faking node 3 at 0000000060000000-0000000080000000 (512MB)
|
/linux-4.1.27/Documentation/RCU/ |
D | lockdep-splat.txt | 14 So let's look at an example RCU lockdep splat from 3.0-rc5, one that 27 #0: (&shost->scan_mutex){+.+.+.}, at: [<ffffffff8145efca>] 29 #1: (&eq->sysfs_lock){+.+...}, at: [<ffffffff812a5032>] 31 #2: (&(&q->__queue_lock)->rlock){-.-...}, at: [<ffffffff812b6233>] 86 return value from rcu_dereference(), or at least until there is some
|
/linux-4.1.27/arch/powerpc/boot/dts/fsl/ |
D | mpc8544si-post.dtsi | 20 * Foundation, either version 2 of that License or (at your option) any 42 /* controller at 0x8000 */ 53 /* controller at 0x9000 */ 82 /* controller at 0xa000 */ 110 /* controller at 0xb000 */
|
D | mpc8548si-post.dtsi | 20 * Foundation, either version 2 of that License or (at your option) any 42 /* controller at 0x8000 */ 53 /* controller at 0x9000 */ 64 /* controller at 0xa000 */
|
D | mpc8536si-post.dtsi | 20 * Foundation, either version 2 of that License or (at your option) any 42 /* controller at 0x8000 */ 53 /* controller at 0x9000 */ 82 /* controller at 0xa000 */ 110 /* controller at 0xb000 */
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | README.quirks | 11 enabled automagically for known-buggy chipsets (look at the kernel 26 the video function at power-up and parks there during no requests for 43 (1) Deassert REQ at the same time as asserting FRAME. 61 responsibility to remove its request at the same time. It is the 64 be removed at the end of the transaction: for example, when the bus is
|
D | README | 5 You'll need at least these config options for bttv: 47 Memory at e2000000 (32-bit, prefetchable) [size=4K] 60 PAL/NTSC/SECAM test signal generator at home, so I often can't 78 at least the country you are living in).
|
/linux-4.1.27/tools/usb/usbip/ |
D | README | 148 : (Defined at Interface level) / unknown subclass / unknown protocol (00/00/00) 153 : (Defined at Interface level) / unknown subclass / unknown protocol (00/00/00) 158 : (Defined at Interface level) / unknown subclass / unknown protocol (00/00/00) 163 : (Defined at Interface level) / unknown subclass / unknown protocol (00/00/00) 176 Port 00: <Port in Use> at Full Speed(12Mbps)
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-report.txt | 76 - dso: name of library or module executed at the time of sample 77 - symbol: name of function executed at the time of sample 80 - cpu: cpu number the task ran at the time of sample 81 - srcline: filename and line number executed at the time of sample. The 129 - symbol_daddr: name of data symbol being executed on at the time of sample 131 on at the time of sample 132 - locked: whether the bus was locked at the time of sample 133 - tlb: type of tlb access for the data at the time of sample 134 - mem: type of memory access for the data at the time of sample 135 - snoop: type of snoop (if any) for the data at the time of sample [all …]
|
/linux-4.1.27/Documentation/cpuidle/ |
D | governor.txt | 11 cpuidle governor is policy routine that decides what idle state to enter at 20 More than one governor can be registered at the same time and
|
/linux-4.1.27/Documentation/development-process/ |
D | 8.Conclusion | 14 Various web sites discuss kernel development at all levels of detail. Your 17 index at: 31 Rubini, and Greg Kroah-Hartman). Online at 43 Documentation for git can be found at:
|
/linux-4.1.27/Documentation/ABI/stable/ |
D | sysfs-class-udc | 6 Indicates if an OTG A-Host supports HNP at an alternate port. 14 Indicates if an OTG A-Host supports HNP at this port. 30 Indicates the current negotiated speed at this port.
|
D | firewire-cdev | 29 resources (channels, bandwidth) at the bus's IRM 84 prot = at least PROT_READ for reception and at least PROT_WRITE 98 bandwidth at the IRM that were marked for kernel-assisted
|
D | sysfs-bus-usb | 24 being autosuspended at all, and writing a negative value 89 KernelVersion: since at least 2.6.18 96 KernelVersion: since at least 2.6.18 129 descriptor at a time until the next config descriptor is found. 135 KernelVersion: since at least 2.6.18
|
/linux-4.1.27/arch/arm/mach-footbridge/ |
D | Kconfig | 32 prototypes at this time. Information is available at: 74 NetWinder. Information about this machine can be found at:
|
/linux-4.1.27/arch/arm/mach-ep93xx/ |
D | Kconfig | 26 first SDRAM bank at 0x00000000. 32 first SDRAM bank at 0xc0000000. 38 first SDRAM bank at 0xd0000000. 44 first SDRAM bank at 0xe0000000. 50 first SDRAM bank at 0xf0000000.
|
/linux-4.1.27/drivers/staging/vme/devices/ |
D | Kconfig | 8 VME windows in a manner at least semi-compatible with the interface 9 provided with the original driver at <http://www.vmelinux.org/>.
|
/linux-4.1.27/fs/befs/ |
D | Kconfig | 10 available at this time). It is a 64 bit filesystem, so it supports 13 If you use this filesystem, you should also say Y to at least one
|
/linux-4.1.27/fs/ceph/ |
D | Kconfig | 15 More information at http://ceph.newdream.net/. 38 Linux website <http://acl.bestbits.at/>.
|
/linux-4.1.27/fs/squashfs/ |
D | Kconfig | 70 Only one block (data or metadata) can be decompressed at any 130 aimed at embedded systems with slower CPUs where the overheads 145 aimed at embedded systems with slower CPUs where the overheads 160 the default zlib compression, at the expense of greater CPU and 205 has to re-read fragments less often from disk, at the expense 207 SquashFS uses less memory at the expense of extra reads from disk. 209 Note there must be at least one cached fragment. Anything
|
/linux-4.1.27/Documentation/netlabel/ |
D | cipso_ipv4.txt | 20 CIPSO label can be changed at any point in time, however, it is recommended 28 The CIPSO/IPv4 protocol engine validates every CIPSO IP option it finds at the 32 This is typically done at the socket layer using the 'socket_sock_rcv_skb()'
|
/linux-4.1.27/Documentation/arm/Samsung-S3C24XX/ |
D | CPUfreq.txt | 11 rate the core is running at. 28 framework needs to supply at least basic details of what is required. 30 The core registers with drivers/cpufreq at init time if all the data
|
D | Suspend.txt | 11 at the relevant CPU datasheet from Samsung. 19 2) Support for at least 1 source for resume 23 4) Any peripherals that are going to be powered down at the same 92 rely on are still enabled at that point.
|
/linux-4.1.27/arch/cris/boot/rescue/ |
D | kimagerescue.S | 48 ;; since etrax actually starts at address 2 when booting from flash, we 71 ;; product and put the sp at the top for now. 75 ;; setup the serial port at 115200 baud
|
/linux-4.1.27/arch/openrisc/ |
D | README.openrisc | 23 In order to build and run Linux for OpenRISC, you'll need at least a basic 28 a toolchain can be found at: 35 your OpenRISC Linux kernel if you don't have an OpenRISC processor at hand.
|
/linux-4.1.27/arch/xtensa/ |
D | Kconfig.debug | 27 bool "Perform S32C1I instruction self-test at boot" 30 Enable this option to test S32C1I instruction behavior at boot.
|
/linux-4.1.27/Documentation/ia64/ |
D | fsys.txt | 19 in a pt-regs structure at the top of the kernel memory stack. 34 - execution is at privilege level 0 (most-privileged) 51 privilege level is at level 0, this means that fsys-mode requires some 139 execution may be pre-empted and resumed on another CPU at any given 178 The "epc" instruction doesn't change the contents of PSR at all. This 205 breakpoint that triggers at any privilege level other than 3 (user-mode). 209 such that execution resumes in the gate page at 212 fsyscall-handler, at which point, by definition, a syscall 228 state such that execution resumes in the gate page at 280 The ELF DSO is a pre-linked library that is mapped in by the kernel at [all …]
|
/linux-4.1.27/arch/powerpc/include/asm/ |
D | io.h | 565 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) ret (*name) at; argument 566 #define DEF_PCI_AC_NORET(name, at, al, space, aa) void (*name) at; argument 576 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) \ argument 577 static inline ret name at \ 584 #define DEF_PCI_AC_NORET(name, at, al, space, aa) \ argument 585 static inline void name at \
|