Symbol: otg_fsm
drivers/usb/chipidea/ci.h
224
struct otg_fsm fsm;
drivers/usb/chipidea/debug.c
190
struct otg_fsm *fsm;
drivers/usb/chipidea/otg_fsm.c
435
static void ci_otg_fsm_add_timer(struct otg_fsm *fsm, enum otg_fsm_timer t)
drivers/usb/chipidea/otg_fsm.c
444
static void ci_otg_fsm_del_timer(struct otg_fsm *fsm, enum otg_fsm_timer t)
drivers/usb/chipidea/otg_fsm.c
457
static void ci_otg_drv_vbus(struct otg_fsm *fsm, int on)
drivers/usb/chipidea/otg_fsm.c
499
static void ci_otg_loc_conn(struct otg_fsm *fsm, int on)
drivers/usb/chipidea/otg_fsm.c
518
static void ci_otg_loc_sof(struct otg_fsm *fsm, int on)
drivers/usb/chipidea/otg_fsm.c
541
static void ci_otg_start_pulse(struct otg_fsm *fsm)
drivers/usb/chipidea/otg_fsm.c
552
static int ci_otg_start_host(struct otg_fsm *fsm, int on)
drivers/usb/chipidea/otg_fsm.c
566
static int ci_otg_start_gadget(struct otg_fsm *fsm, int on)
drivers/usb/chipidea/otg_fsm.c
647
struct otg_fsm *fsm = &ci->fsm;
drivers/usb/chipidea/otg_fsm.c
743
struct otg_fsm *fsm = &ci->fsm;
drivers/usb/common/usb-otg-fsm.c
122
struct otg_fsm *fsm = container_of(to_delayed_work(work),
drivers/usb/common/usb-otg-fsm.c
123
struct otg_fsm, hnp_polling_work);
drivers/usb/common/usb-otg-fsm.c
187
static void otg_start_hnp_polling(struct otg_fsm *fsm)
drivers/usb/common/usb-otg-fsm.c
206
static int otg_set_state(struct otg_fsm *fsm, enum usb_otg_state new_state)
drivers/usb/common/usb-otg-fsm.c
29
static int otg_set_protocol(struct otg_fsm *fsm, int protocol)
drivers/usb/common/usb-otg-fsm.c
328
int otg_statemachine(struct otg_fsm *fsm)
drivers/usb/common/usb-otg-fsm.c
60
static void otg_leave_state(struct otg_fsm *fsm, enum usb_otg_state old_state)
drivers/usb/phy/phy-fsl-usb.c
118
void fsl_otg_chrg_vbus(struct otg_fsm *fsm, int on)
drivers/usb/phy/phy-fsl-usb.c
154
void fsl_otg_drv_vbus(struct otg_fsm *fsm, int on)
drivers/usb/phy/phy-fsl-usb.c
172
void fsl_otg_loc_conn(struct otg_fsm *fsm, int on)
drivers/usb/phy/phy-fsl-usb.c
191
void fsl_otg_loc_sof(struct otg_fsm *fsm, int on)
drivers/usb/phy/phy-fsl-usb.c
206
void fsl_otg_start_pulse(struct otg_fsm *fsm)
drivers/usb/phy/phy-fsl-usb.c
285
int fsl_otg_init_timers(struct otg_fsm *fsm)
drivers/usb/phy/phy-fsl-usb.c
394
void fsl_otg_add_timer(struct otg_fsm *fsm, void *gtimer)
drivers/usb/phy/phy-fsl-usb.c
412
static void fsl_otg_fsm_add_timer(struct otg_fsm *fsm, enum otg_fsm_timer t)
drivers/usb/phy/phy-fsl-usb.c
424
void fsl_otg_del_timer(struct otg_fsm *fsm, void *gtimer)
drivers/usb/phy/phy-fsl-usb.c
434
static void fsl_otg_fsm_del_timer(struct otg_fsm *fsm, enum otg_fsm_timer t)
drivers/usb/phy/phy-fsl-usb.c
458
int fsl_otg_start_host(struct otg_fsm *fsm, int on)
drivers/usb/phy/phy-fsl-usb.c
525
int fsl_otg_start_gadget(struct otg_fsm *fsm, int on)
drivers/usb/phy/phy-fsl-usb.c
585
struct otg_fsm *fsm = &otg_dev->fsm;
drivers/usb/phy/phy-fsl-usb.c
653
struct otg_fsm *fsm = &og->fsm;
drivers/usb/phy/phy-fsl-usb.c
709
struct otg_fsm *fsm = &((struct fsl_otg *)dev_id)->fsm;
drivers/usb/phy/phy-fsl-usb.c
837
struct otg_fsm *fsm;
drivers/usb/phy/phy-fsl-usb.h
359
struct otg_fsm fsm;
drivers/usb/phy/phy-fsl-usb.h
376
void fsl_otg_add_timer(struct otg_fsm *fsm, void *timer);
drivers/usb/phy/phy-fsl-usb.h
377
void fsl_otg_del_timer(struct otg_fsm *fsm, void *timer);
include/linux/usb/otg-fsm.h
191
void (*chrg_vbus)(struct otg_fsm *fsm, int on);
include/linux/usb/otg-fsm.h
192
void (*drv_vbus)(struct otg_fsm *fsm, int on);
include/linux/usb/otg-fsm.h
193
void (*loc_conn)(struct otg_fsm *fsm, int on);
include/linux/usb/otg-fsm.h
194
void (*loc_sof)(struct otg_fsm *fsm, int on);
include/linux/usb/otg-fsm.h
195
void (*start_pulse)(struct otg_fsm *fsm);
include/linux/usb/otg-fsm.h
196
void (*start_adp_prb)(struct otg_fsm *fsm);
include/linux/usb/otg-fsm.h
197
void (*start_adp_sns)(struct otg_fsm *fsm);
include/linux/usb/otg-fsm.h
198
void (*add_timer)(struct otg_fsm *fsm, enum otg_fsm_timer timer);
include/linux/usb/otg-fsm.h
199
void (*del_timer)(struct otg_fsm *fsm, enum otg_fsm_timer timer);
include/linux/usb/otg-fsm.h
200
int (*start_host)(struct otg_fsm *fsm, int on);
include/linux/usb/otg-fsm.h
201
int (*start_gadget)(struct otg_fsm *fsm, int on);
include/linux/usb/otg-fsm.h
205
static inline int otg_chrg_vbus(struct otg_fsm *fsm, int on)
include/linux/usb/otg-fsm.h
213
static inline int otg_drv_vbus(struct otg_fsm *fsm, int on)
include/linux/usb/otg-fsm.h
224
static inline int otg_loc_conn(struct otg_fsm *fsm, int on)
include/linux/usb/otg-fsm.h
235
static inline int otg_loc_sof(struct otg_fsm *fsm, int on)
include/linux/usb/otg-fsm.h
246
static inline int otg_start_pulse(struct otg_fsm *fsm)
include/linux/usb/otg-fsm.h
257
static inline int otg_start_adp_prb(struct otg_fsm *fsm)
include/linux/usb/otg-fsm.h
269
static inline int otg_start_adp_sns(struct otg_fsm *fsm)
include/linux/usb/otg-fsm.h
280
static inline int otg_add_timer(struct otg_fsm *fsm, enum otg_fsm_timer timer)
include/linux/usb/otg-fsm.h
288
static inline int otg_del_timer(struct otg_fsm *fsm, enum otg_fsm_timer timer)
include/linux/usb/otg-fsm.h
296
static inline int otg_start_host(struct otg_fsm *fsm, int on)
include/linux/usb/otg-fsm.h
303
static inline int otg_start_gadget(struct otg_fsm *fsm, int on)
include/linux/usb/otg-fsm.h
310
int otg_statemachine(struct otg_fsm *fsm);