Searched refs:sie (Results 1 – 8 of 8) sorted by relevance
/linux-2.6.39/drivers/usb/c67x00/ |
D | c67x00-ll-hpi.c | 225 void c67x00_ll_hpi_enable_sofeop(struct c67x00_sie *sie) in c67x00_ll_hpi_enable_sofeop() argument 227 hpi_set_bits(sie->dev, HPI_IRQ_ROUTING_REG, in c67x00_ll_hpi_enable_sofeop() 228 SOFEOP_TO_HPI_EN(sie->sie_num)); in c67x00_ll_hpi_enable_sofeop() 231 void c67x00_ll_hpi_disable_sofeop(struct c67x00_sie *sie) in c67x00_ll_hpi_disable_sofeop() argument 233 hpi_clear_bits(sie->dev, HPI_IRQ_ROUTING_REG, in c67x00_ll_hpi_disable_sofeop() 234 SOFEOP_TO_HPI_EN(sie->sie_num)); in c67x00_ll_hpi_disable_sofeop() 264 u16 c67x00_ll_get_usb_ctl(struct c67x00_sie *sie) in c67x00_ll_get_usb_ctl() argument 266 return hpi_read_word(sie->dev, USB_CTL_REG(sie->sie_num)); in c67x00_ll_get_usb_ctl() 272 void c67x00_ll_usb_clear_status(struct c67x00_sie *sie, u16 bits) in c67x00_ll_usb_clear_status() argument 274 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 | 47 static void c67x00_probe_sie(struct c67x00_sie *sie, in c67x00_probe_sie() argument 50 spin_lock_init(&sie->lock); in c67x00_probe_sie() 51 sie->dev = dev; in c67x00_probe_sie() 52 sie->sie_num = sie_num; in c67x00_probe_sie() 53 sie->mode = c67x00_sie_config(dev->pdata->sie_config, sie_num); in c67x00_probe_sie() 55 switch (sie->mode) { in c67x00_probe_sie() 57 c67x00_hcd_probe(sie); in c67x00_probe_sie() 61 dev_info(sie_dev(sie), in c67x00_probe_sie() 62 "Not using SIE %d as requested\n", sie->sie_num); in c67x00_probe_sie() 66 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 | 185 return c67x00_ll_husb_get_frame(c67x00->sie) & HOST_FRAME_MASK; in c67x00_get_current_frame_number() 448 c67x00_ll_hpi_enable_sofeop(c67x00->sie); in c67x00_urb_enqueue() 639 td->port_length = __cpu_to_le16((c67x00->sie->sie_num << 15) | in c67x00_create_td() 854 c67x00_ll_read_mem_le16(c67x00->sie->dev, in c67x00_parse_td() 858 c67x00_ll_read_mem_le16(c67x00->sie->dev, td_ly_base_addr(td), in c67x00_parse_td() 1070 return !c67x00_ll_husb_get_current_td(c67x00->sie); in c67x00_all_tds_processed() 1081 c67x00_ll_write_mem_le16(c67x00->sie->dev, td_ly_base_addr(td), in c67x00_send_td() 1084 c67x00_ll_write_mem_le16(c67x00->sie->dev, in c67x00_send_td() 1104 c67x00_ll_husb_set_current_td(c67x00->sie, c67x00->td_base_addr); in c67x00_send_frame() 1135 c67x00_ll_hpi_disable_sofeop(c67x00->sie); in c67x00_do_work()
|
/linux-2.6.39/arch/s390/kvm/ |
D | sie64a.S | 44 clg %r2,SPI_PSW+8(0,%r15) # intercepted sie 50 larl %r2,sie_exit # work pending, leave sie 66 lgr %r14,%r2 # pointer to sie control block 75 sie 0(%r14)
|
/linux-2.6.39/Documentation/s390/ |
D | kvm.txt | 117 the psw during sie intercepts that fall back to userspace because struct kvm_run
|