/linux/arch/sh/include/mach-ecovec24/mach/ |
H A D | partner-jet-setup.txt | 21 ED 0xff000010, 0x00000004 24 ED 0xa4150024, 0x00004000 25 ED 0xa4150000, 0x8E003508 30 ED 0xff800020, 0xa5a50000 31 ED 0xfec10000, 0x00001013 32 ED 0xfec10004, 0x11110400 33 ED 0xfec10024, 0x00000440 38 ED 0xfd000108, 0x00000181 39 ED 0xfd000020, 0x015B0002 40 ED 0xfd000030, 0x03061502 [all …]
|
/linux/arch/sh/boards/mach-ecovec24/ |
H A D | sdram.S | 23 ED 0xFD000010, 0x00000000 /* DBEN */ 24 ED 0xFD000040, 0x00000000 /* DBRFPDN0 */ 25 ED 0xFD000014, 0x00000002 /* DBCMDCNT (PALL) */ 26 ED 0xFD000014, 0x00000004 /* DBCMDCNT (REF) */ 27 ED 0xFD000040, 0x00000001 /* DBRFPDN0 */ 43 ED 0xFD000040, 0x00000000 /* DBRFPDN0 */ 45 ED 0xFD000014, 0x00000002 /* DBCMDCNT (PALL) */ 46 ED 0xFD000014, 0x00000004 /* DBCMDCNT (REF) */ 47 ED 0xFD000010, 0x00000001 /* DBEN */ 48 ED 0xFD000040, 0x00010000 /* DBRFPDN0 */ [all …]
|
/linux/arch/sh/boards/mach-se/7724/ |
H A D | sdram.S | 23 ED 0xFD000010, 0x00000000 /* DBEN */ 24 ED 0xFD000040, 0x00000000 /* DBRFPDN0 */ 25 ED 0xFD000014, 0x00000002 /* DBCMDCNT (PALL) */ 26 ED 0xFD000014, 0x00000004 /* DBCMDCNT (REF) */ 27 ED 0xFD000040, 0x00000001 /* DBRFPDN0 */ 43 ED 0xFD000040, 0x00000000 /* DBRFPDN0 */ 45 ED 0xFD000014, 0x00000002 /* DBCMDCNT (PALL) */ 46 ED 0xFD000014, 0x00000004 /* DBCMDCNT (REF) */ 47 ED 0xFD000010, 0x00000001 /* DBEN */ 48 ED 0xFD000040, 0x00010000 /* DBRFPDN0 */ [all …]
|
/linux/drivers/usb/host/ |
H A D | ohci-q.c | 103 * ED handling functions 106 /* search for the right schedule branch to use for a periodic ed. 143 static void periodic_link (struct ohci_hcd *ohci, struct ed *ed) in periodic_link() argument 148 (ed->hwINFO & cpu_to_hc32 (ohci, ED_ISO)) ? "iso " : "", in periodic_link() 149 ed, ed->branch, ed->load, ed->interval); in periodic_link() 151 for (i = ed->branch; i < NUM_INTS; i += ed->interval) { in periodic_link() 152 struct ed **prev = &ohci->periodic [i]; in periodic_link() 154 struct ed *here = *prev; in periodic_link() 160 while (here && ed != here) { in periodic_link() 161 if (ed->interval > here->interval) in periodic_link() [all …]
|
H A D | fhci-q.c | 58 void fhci_add_tds_to_ed(struct ed *ed, struct td **td_list, int number) in fhci_add_tds_to_ed() argument 64 list_add_tail(&td->node, &ed->td_list); in fhci_add_tds_to_ed() 66 if (ed->td_head == NULL) in fhci_add_tds_to_ed() 67 ed->td_head = td_list[0]; in fhci_add_tds_to_ed() 70 static struct td *peek_td_from_ed(struct ed *ed) in peek_td_from_ed() argument 74 if (!list_empty(&ed->td_list)) in peek_td_from_ed() 75 td = list_entry(ed->td_list.next, struct td, node); in peek_td_from_ed() 107 struct td *fhci_remove_td_from_ed(struct ed *ed) in fhci_remove_td_from_ed() argument 111 if (!list_empty(&ed->td_list)) { in fhci_remove_td_from_ed() 112 td = list_entry(ed->td_list.next, struct td, node); in fhci_remove_td_from_ed() [all …]
|
H A D | fhci-mem.c | 30 static void init_ed(struct ed *ed) in init_ed() argument 32 memset(ed, 0, sizeof(*ed)); in init_ed() 33 INIT_LIST_HEAD(&ed->td_list); in init_ed() 34 INIT_LIST_HEAD(&ed->node); in init_ed() 61 struct ed *fhci_get_empty_ed(struct fhci_hcd *fhci) in fhci_get_empty_ed() 63 struct ed *ed; in fhci_get_empty_ed() local 66 ed = list_entry(fhci->empty_eds.next, struct ed, node); in fhci_get_empty_ed() 69 ed = kmalloc(sizeof(*ed), GFP_ATOMIC); in fhci_get_empty_ed() 70 if (!ed) in fhci_get_empty_ed() 71 fhci_err(fhci, "No memory to allocate to ED\n"); in fhci_get_empty_ed() [all …]
|
H A D | ohci-hcd.c | 153 struct ed *ed; in ohci_urb_enqueue() local 160 /* every endpoint has a ed, locate and maybe (re)initialize it */ in ohci_urb_enqueue() 161 ed = ed_get(ohci, urb->ep, urb->dev, pipe, urb->interval); in ohci_urb_enqueue() 162 if (! ed) in ohci_urb_enqueue() 166 switch (ed->type) { in ohci_urb_enqueue() 198 urb_priv->ed = ed; in ohci_urb_enqueue() 225 /* schedule the ed if needed */ in ohci_urb_enqueue() 226 if (ed->state == ED_IDLE) { in ohci_urb_enqueue() 227 retval = ed_schedule (ohci, ed); in ohci_urb_enqueue() 241 list_add(&ed->in_use_list, &ohci->eds_in_use); in ohci_urb_enqueue() [all …]
|
H A D | ohci-mem.c | 55 sizeof (struct ed), in ohci_mem_init() 133 static struct ed * 137 struct ed *ed; in ed_alloc() local 141 ed = gen_pool_dma_zalloc_align(hcd->localmem_pool, in ed_alloc() 142 sizeof(*ed), &dma, 16); in ed_alloc() 144 ed = dma_pool_zalloc(hc->ed_cache, mem_flags, &dma); in ed_alloc() 145 if (ed) { in ed_alloc() 146 INIT_LIST_HEAD (&ed->td_list); in ed_alloc() 147 ed->dma = dma; in ed_alloc() 149 return ed; in ed_alloc() [all …]
|
H A D | ohci-dbg.c | 313 const struct ed *ed, int verbose) in ohci_dump_ed() argument 315 u32 tmp = hc32_to_cpu (ohci, ed->hwINFO); in ohci_dump_ed() 318 ohci_dbg (ohci, "%s, ed %p state 0x%x type %s; next ed %08x\n", in ohci_dump_ed() 320 ed, ed->state, edstring (ed->type), in ohci_dump_ed() 321 hc32_to_cpup (ohci, &ed->hwNextED)); in ohci_dump_ed() 337 tmp = hc32_to_cpup (ohci, &ed->hwHeadP); in ohci_dump_ed() 342 hc32_to_cpup (ohci, &ed->hwTailP), in ohci_dump_ed() 347 /* use ed->td_list because HC concurrently modifies in ohci_dump_ed() 350 list_for_each (tmp, &ed->td_list) { in ohci_dump_ed() 400 show_list (struct ohci_hcd *ohci, char *buf, size_t count, struct ed *ed) in show_list() argument [all …]
|
H A D | fhci.h | 323 struct ed { struct 349 struct ed *ed; /* a handle to the corresponding ED */ argument 391 struct ed *ed; member 515 void fhci_recycle_empty_ed(struct fhci_hcd *fhci, struct ed *ed); 516 struct ed *fhci_get_empty_ed(struct fhci_hcd *fhci); 518 struct urb_priv *urb_priv, struct ed *ed, u16 index, 521 void fhci_add_tds_to_ed(struct ed *ed, struct td **td_list, int number); 565 struct td *fhci_remove_td_from_ed(struct ed *ed); 567 void fhci_move_td_from_ed_to_done_list(struct fhci_usb *usb, struct ed *ed); 572 void fhci_del_ed_list(struct fhci_hcd *fhci, struct ed *ed);
|
H A D | ohci.h | 20 * OHCI Endpoint Descriptor (ED) ... holds TD queue 26 struct ed { struct 41 __hc32 hwNextED; /* next ED in list */ 44 dma_addr_t dma; /* addr of ED */ 48 struct ed *ed_next; /* on schedule or rm_list */ argument 49 struct ed *ed_prev; /* for non-interrupt EDs */ argument 75 #define OKAY_TO_TAKEBACK(ohci, ed) \ argument 76 ((int) (ohci->wdh_cnt - ed->takeback_wdh_cnt) >= 0) 131 struct ed *ed; member 139 struct list_head td_list; /* "shadow list", TDs on same ED */ [all …]
|
/linux/arch/sh/include/mach-kfr2r09/mach/ |
H A D | partner-jet-setup.txt | 21 ED 0xff00001c, 0x00000800 24 ED 0xff000010, 0x00000004 27 ED 0xff800020, 0xa5a50001 28 ED 0xfec10000, 0x0000001b 33 ED 0xa4150004, 0x00000050 34 ED 0xa4150000, 0x91053508 36 ED 0xa4150050, 0x00000340 37 ED 0xa4150024, 0x00005000 108 ED 0xFD000108, 0x40000301 109 ED 0xFD000020, 0x011B0002 [all …]
|
/linux/arch/sh/boards/mach-kfr2r09/ |
H A D | sdram.S | 23 ED 0xFD000010, 0x00000000 /* DBEN */ 24 ED 0xFD000040, 0x00000000 /* DBRFPDN0 */ 25 ED 0xFD000014, 0x00000002 /* DBCMDCNT (PALL) */ 26 ED 0xFD000014, 0x00000004 /* DBCMDCNT (REF) */ 27 ED 0xFD000040, 0x00000001 /* DBRFPDN0 */ 43 ED 0xFD000040, 0x00000000 /* DBRFPDN0 */ 45 ED 0xFD000014, 0x00000002 /* DBCMDCNT (PALL) */ 46 ED 0xFD000014, 0x00000004 /* DBCMDCNT (REF) */ 47 ED 0xFD000010, 0x00000001 /* DBEN */ 48 ED 0xFD000040, 0x00010000 /* DBRFPDN0 */ [all …]
|
/linux/drivers/edac/ |
H A D | octeon_edac-pc.c | 30 struct edac_device_ctl_info *ed; member 57 edac_device_printk(p->ed, KERN_ERR, in co_cache_error_event() 62 edac_device_handle_ce(p->ed, cpu, 1, "icache"); in co_cache_error_event() 65 edac_device_printk(p->ed, KERN_ERR, in co_cache_error_event() 70 edac_device_handle_ue(p->ed, cpu, 0, "dcache"); in co_cache_error_event() 72 edac_device_handle_ce(p->ed, cpu, 0, "dcache"); in co_cache_error_event() 94 p->ed = edac_device_alloc_ctl_info(0, "cpu", num_possible_cpus(), in co_cache_error_probe() 97 if (!p->ed) in co_cache_error_probe() 100 p->ed->dev = &pdev->dev; in co_cache_error_probe() 102 p->ed->dev_name = dev_name(&pdev->dev); in co_cache_error_probe() [all …]
|
/linux/Documentation/ABI/testing/ |
H A D | sysfs-block-aoe | 4 Contact: Ed L. Cashin <ed.cashin@acm.org> 12 Contact: Ed L. Cashin <ed.cashin@acm.org> 21 Contact: Ed L. Cashin <ed.cashin@acm.org> 35 Contact: Ed L. Cashin <ed.cashin@acm.org> 42 Contact: Ed L. Cashin <ed.cashin@acm.org>
|
/linux/drivers/net/ethernet/fungible/funeth/ |
H A D | funeth_main.c | 1186 static int fun_init_vports(struct fun_ethdev *ed, unsigned int n) in fun_init_vports() argument 1188 if (ed->num_vports) in fun_init_vports() 1191 ed->vport_info = kvcalloc(n, sizeof(*ed->vport_info), GFP_KERNEL); in fun_init_vports() 1192 if (!ed->vport_info) in fun_init_vports() 1194 ed->num_vports = n; in fun_init_vports() 1198 static void fun_free_vports(struct fun_ethdev *ed) in fun_free_vports() argument 1200 kvfree(ed->vport_info); in fun_free_vports() 1201 ed->vport_info = NULL; in fun_free_vports() 1202 ed->num_vports = 0; in fun_free_vports() 1205 static struct fun_vport_info *fun_get_vport(struct fun_ethdev *ed, in fun_get_vport() argument [all …]
|
/linux/tools/testing/selftests/bpf/progs/ |
H A D | preempt_lock.c | 11 __failure __msg("BPF_EXIT instruction in main prog cannot be used inside bpf_preempt_disable-ed reg… 19 __failure __msg("BPF_EXIT instruction in main prog cannot be used inside bpf_preempt_disable-ed reg… 28 __failure __msg("BPF_EXIT instruction in main prog cannot be used inside bpf_preempt_disable-ed reg… 38 __failure __msg("BPF_EXIT instruction in main prog cannot be used inside bpf_preempt_disable-ed reg… 60 __failure __msg("BPF_EXIT instruction in main prog cannot be used inside bpf_preempt_disable-ed reg… 68 __failure __msg("BPF_EXIT instruction in main prog cannot be used inside bpf_preempt_disable-ed reg… 77 __failure __msg("BPF_EXIT instruction in main prog cannot be used inside bpf_preempt_disable-ed reg…
|
H A D | irq.c | 31 __failure __msg("BPF_EXIT instruction in main prog cannot be used inside bpf_local_irq_save-ed regi… 43 __failure __msg("BPF_EXIT instruction in main prog cannot be used inside bpf_local_irq_save-ed regi… 57 __failure __msg("BPF_EXIT instruction in main prog cannot be used inside bpf_local_irq_save-ed regi… 83 __failure __msg("BPF_EXIT instruction in main prog cannot be used inside bpf_local_irq_save-ed regi… 93 __failure __msg("BPF_EXIT instruction in main prog cannot be used inside bpf_local_irq_save-ed regi… 105 __failure __msg("BPF_EXIT instruction in main prog cannot be used inside bpf_local_irq_save-ed regi… 119 __failure __msg("BPF_EXIT instruction in main prog cannot be used inside bpf_local_irq_save-ed regi…
|
/linux/tools/memory-model/Documentation/ |
H A D | references.txt | 9 o SPARC International Inc. (Ed.). 1994. "The SPARC Architecture 12 o Compaq Computer Corporation (Ed.). 2002. "Alpha Architecture 15 o Intel Corporation (Ed.). 2002. "A Formal Specification of Intel 18 o Intel Corporation (Ed.). 2002. "Intel 64 and IA-32 Architectures 26 o IBM Corporation (Ed.). 2009. "Power ISA Version 2.06". IBM 29 o ARM Ltd. (Ed.). 2009. "ARM Barrier Litmus Tests and Cookbook". 44 o ARM Ltd. (Ed.). 2014. "ARM Architecture Reference Manual (ARMv8,
|
/linux/Documentation/translations/it_IT/process/ |
H A D | management-style.rst | 14 ed è principalmente scritto per evitare di rispondere [#f1]_ in continuazione 46 essere il dirigente che la prende. Questo è molto profondo ed ovvio, ma non è 66 Ciò aiuta a capire che la differenza chiave tra una grande decisione ed una 84 tutti che siete stati degli scemi incompetenti, dite che siete dispiaciuti, ed 93 noi piace mantenere le apparenze, ed uscire allo scoperto in pubblico per 96 non era del tutto valido, può rivelarsi difficile anche per un povero ed 108 Ed è molto più facile ammettere di essere stupidi quando non avete **ancora** 142 Ci sono molte persone stupide, ed essere un dirigente significa che dovrete 148 convivere con i loro, ed i vostri, problemi. 252 ed è essere chiamate "teste di c****" con fare da bigotto. Se per il primo [all …]
|
H A D | 1.Intro.rst | 25 il ciclo di rilascio del kernel, ed i meccanismi della finestra 39 modifiche, ed esiste un'introduzione ad alcuni strumenti che possono aiutarvi 44 comunità di sviluppo, le modifiche devono essere propriamente formattate ed 74 robusta, efficiente ed adattabile a praticamente qualsiasi situazione. 77 (ed aziende) desiderosi di partecipare a questo sviluppo. I produttori di 81 vogliono che Linux sia capace ed adeguato agli obiettivi ed il più possibile 82 alla mano. Fornitori ed altri produttori di software che basano i propri 83 prodotti su Linux hanno un chiaro interesse verso capacità, prestazioni ed 89 Linux ed influenzarne la direzione di sviluppo. Prodotti non open-source non 203 funzioni al kernel e fornire competenze ed esempi che saranno utili ad
|
H A D | botching-up-ioctls.rst | 16 oggigiorno ogni driver ha il suo insieme di ioctl per allocare memoria ed 64 compatibilità all'indietro ed in avanti. E dato che sbagliare al primo colpo è 77 arrivo, ed estende con zeri ogni incongruenza fra kernel e spazio utente. 83 * Verificate tutti i campi e *flag* inutilizzati ed i riempimenti siano a 0, 113 Verificate che il codice di errore rispetti le aspettative. Ed infine, 127 driver i915 l'abbozza con l'ioctl `set_tiling`, ed ora siamo inchiodati per 147 operazioni ed attendere quelle in sospeso. Questo è davvero difficile; al 232 buttarsi in lunghe discussioni alla ricerca di una soluzione più generica. Ed
|
/linux/Documentation/translations/it_IT/doc-guide/ |
H A D | kernel-doc.rst | 25 funzioni ed i tipi di dato con i loro relativi collegamenti. Le descrizioni 26 vengono filtrare per cercare i riferimenti ed i marcatori. 43 dei sorgenti. Quest'ultima raccomandazione ha una priorità più bassa ed è a 59 più bassa ed è a discrezione dal manutentore (MAINTAINER) del file sorgente. 202 Documentare strutture, unioni ed enumerazioni 205 Generalmente il formato di un commento kernel-doc per struct, union ed enum è:: 218 per descrivere unioni ed enumerati. ``member`` viene usato per indicare i 219 membri di strutture ed unioni, ma anche i valori di un tipo enumerato. 228 I membri di strutture, unioni ed enumerati devo essere documentati come i 259 Strutture ed unioni annidate [all …]
|
/linux/Documentation/translations/zh_CN/mm/damon/ |
H A D | design.rst | 58 <uppermost mmap()-ed region> 59 (small mmap()-ed regions and munmap()-ed regions) 60 <lowermost mmap()-ed region>
|
/linux/arch/powerpc/lib/ |
H A D | feature-fixups-test.S | 210 * reports an error. #if 0'ed so as not to break the build normally. 230 /* Basic test, this section should all be nop'ed */ \ 238 /* Basic test, this section should NOT be nop'ed */ \ 246 /* Nesting test, inner section should be nop'ed */ \ 259 /* Nesting test, whole section should be nop'ed */ \ 272 /* Nesting test, none should be nop'ed */ \ 319 /* Default case should be taken, with nop'ed inner section */ \ 385 /* Feature section with nested alt section, all nop'ed */ \ 502 /* Basic test, this section should all be nop'ed */ \ 510 /* Basic test, this section should NOT be nop'ed */ \ [all …]
|