Searched refs:sie (Results 1 – 11 of 11) sorted by relevance
/linux-4.1.27/drivers/usb/c67x00/ |
D | c67x00-ll-hpi.c | 235 void c67x00_ll_hpi_enable_sofeop(struct c67x00_sie *sie) in c67x00_ll_hpi_enable_sofeop() argument 237 hpi_set_bits(sie->dev, HPI_IRQ_ROUTING_REG, in c67x00_ll_hpi_enable_sofeop() 238 SOFEOP_TO_HPI_EN(sie->sie_num)); in c67x00_ll_hpi_enable_sofeop() 241 void c67x00_ll_hpi_disable_sofeop(struct c67x00_sie *sie) in c67x00_ll_hpi_disable_sofeop() argument 243 hpi_clear_bits(sie->dev, HPI_IRQ_ROUTING_REG, in c67x00_ll_hpi_disable_sofeop() 244 SOFEOP_TO_HPI_EN(sie->sie_num)); in c67x00_ll_hpi_disable_sofeop() 274 u16 c67x00_ll_get_usb_ctl(struct c67x00_sie *sie) in c67x00_ll_get_usb_ctl() argument 276 return hpi_read_word(sie->dev, USB_CTL_REG(sie->sie_num)); in c67x00_ll_get_usb_ctl() 282 void c67x00_ll_usb_clear_status(struct c67x00_sie *sie, u16 bits) in c67x00_ll_usb_clear_status() argument 284 hpi_write_word(sie->dev, USB_STAT_REG(sie->sie_num), bits); in c67x00_ll_usb_clear_status() [all …]
|
D | c67x00-hcd.c | 47 static void c67x00_hub_reset_host_port(struct c67x00_sie *sie, int port) in c67x00_hub_reset_host_port() argument 49 struct c67x00_hcd *c67x00 = sie->private_data; in c67x00_hub_reset_host_port() 52 c67x00_ll_husb_reset(sie, port); in c67x00_hub_reset_host_port() 55 c67x00_ll_husb_reset_port(sie, port); in c67x00_hub_reset_host_port() 58 c67x00_ll_set_husb_eot(sie->dev, DEFAULT_EOT); in c67x00_hub_reset_host_port() 64 struct c67x00_sie *sie = c67x00->sie; in c67x00_hub_status_data() local 69 status = c67x00_ll_usb_get_status(sie); in c67x00_hub_status_data() 84 struct c67x00_sie *sie = c67x00->sie; in c67x00_hub_control() local 101 status = c67x00_ll_usb_get_status(sie); in c67x00_hub_control() 102 usb_status = c67x00_ll_get_usb_ctl(sie); in c67x00_hub_control() [all …]
|
D | c67x00-drv.c | 48 static void c67x00_probe_sie(struct c67x00_sie *sie, in c67x00_probe_sie() argument 51 spin_lock_init(&sie->lock); in c67x00_probe_sie() 52 sie->dev = dev; in c67x00_probe_sie() 53 sie->sie_num = sie_num; in c67x00_probe_sie() 54 sie->mode = c67x00_sie_config(dev->pdata->sie_config, sie_num); in c67x00_probe_sie() 56 switch (sie->mode) { in c67x00_probe_sie() 58 c67x00_hcd_probe(sie); in c67x00_probe_sie() 62 dev_info(sie_dev(sie), in c67x00_probe_sie() 63 "Not using SIE %d as requested\n", sie->sie_num); in c67x00_probe_sie() 67 dev_err(sie_dev(sie), in c67x00_probe_sie() [all …]
|
D | c67x00.h | 210 void (*irq) (struct c67x00_sie *sie, u16 int_status, u16 msg); 252 struct c67x00_sie sie[C67X00_SIES]; member 264 void c67x00_ll_hpi_enable_sofeop(struct c67x00_sie *sie); 265 void c67x00_ll_hpi_disable_sofeop(struct c67x00_sie *sie); 269 u16 c67x00_ll_get_usb_ctl(struct c67x00_sie *sie); 270 void c67x00_ll_usb_clear_status(struct c67x00_sie *sie, u16 bits); 271 u16 c67x00_ll_usb_get_status(struct c67x00_sie *sie); 279 void c67x00_ll_husb_reset(struct c67x00_sie *sie, int port); 280 void c67x00_ll_husb_set_current_td(struct c67x00_sie *sie, u16 addr); 281 u16 c67x00_ll_husb_get_current_td(struct c67x00_sie *sie); [all …]
|
D | c67x00-hcd.h | 71 struct c67x00_sie *sie; member 115 int c67x00_hcd_probe(struct c67x00_sie *sie); 116 void c67x00_hcd_remove(struct c67x00_sie *sie); 126 void c67x00_hcd_msg_received(struct c67x00_sie *sie, u16 msg);
|
D | c67x00-sched.c | 175 return c67x00_ll_husb_get_frame(c67x00->sie) & HOST_FRAME_MASK; in c67x00_get_current_frame_number() 438 c67x00_ll_hpi_enable_sofeop(c67x00->sie); in c67x00_urb_enqueue() 629 td->port_length = __cpu_to_le16((c67x00->sie->sie_num << 15) | in c67x00_create_td() 845 c67x00_ll_read_mem_le16(c67x00->sie->dev, in c67x00_parse_td() 849 c67x00_ll_read_mem_le16(c67x00->sie->dev, td_ly_base_addr(td), in c67x00_parse_td() 1061 return !c67x00_ll_husb_get_current_td(c67x00->sie); in c67x00_all_tds_processed() 1072 c67x00_ll_write_mem_le16(c67x00->sie->dev, td_ly_base_addr(td), in c67x00_send_td() 1075 c67x00_ll_write_mem_le16(c67x00->sie->dev, in c67x00_send_td() 1095 c67x00_ll_husb_set_current_td(c67x00->sie, c67x00->td_base_addr); in c67x00_send_frame() 1126 c67x00_ll_hpi_disable_sofeop(c67x00->sie); in c67x00_do_work()
|
/linux-4.1.27/arch/s390/include/uapi/asm/ |
D | Kbuild | 40 header-y += sie.h
|
/linux-4.1.27/tools/perf/ |
D | MANIFEST | 58 arch/s390/include/uapi/asm/sie.h
|
/linux-4.1.27/Documentation/s390/ |
D | kvm.txt | 117 the psw during sie intercepts that fall back to userspace because struct kvm_run
|
/linux-4.1.27/arch/s390/kernel/ |
D | entry.S | 1011 sie 0(%r14)
|
/linux-4.1.27/tools/power/cpupower/po/ |
D | de.po | 541 "Konnte nicht die CPU %d analysieren, da sie (scheinbar?) nicht existiert.\n"
|