Home
last modified time | relevance | path

Searched refs:dep (Results 1 – 15 of 15) sorted by relevance

/rk3399_rockchip-uboot/drivers/usb/dwc3/
H A Dgadget.c185 struct dwc3_ep *dep = dwc->eps[(num << 1) | 1]; in dwc3_gadget_resize_tx_fifos() local
189 if (!(dep->flags & DWC3_EP_ENABLED)) in dwc3_gadget_resize_tx_fifos()
192 if (usb_endpoint_xfer_bulk(dep->endpoint.desc) in dwc3_gadget_resize_tx_fifos()
193 || usb_endpoint_xfer_isoc(dep->endpoint.desc)) in dwc3_gadget_resize_tx_fifos()
207 tmp = mult * (dep->endpoint.maxpacket + mdwidth); in dwc3_gadget_resize_tx_fifos()
215 dep->name, last_fifo_depth, fifo_size & 0xffff); in dwc3_gadget_resize_tx_fifos()
225 void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req, in dwc3_gadget_giveback() argument
228 struct dwc3 *dwc = dep->dwc; in dwc3_gadget_giveback()
231 dep->busy_slot++; in dwc3_gadget_giveback()
237 if (((dep->busy_slot & DWC3_TRB_MASK) == in dwc3_gadget_giveback()
[all …]
H A Dep0.c30 static void __dwc3_ep0_do_control_status(struct dwc3 *dwc, struct dwc3_ep *dep);
32 struct dwc3_ep *dep, struct dwc3_request *req);
55 struct dwc3_ep *dep; in dwc3_ep0_start_trans() local
59 dep = dwc->eps[epnum]; in dwc3_ep0_start_trans()
60 if (dep->flags & DWC3_EP_BUSY) { in dwc3_ep0_start_trans()
61 dev_vdbg(dwc->dev, "%s still busy", dep->name); in dwc3_ep0_start_trans()
65 trb = &dwc->ep0_trb[dep->free_slot]; in dwc3_ep0_start_trans()
68 dep->free_slot++; in dwc3_ep0_start_trans()
94 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, in dwc3_ep0_start_trans()
97 dev_dbg(dwc->dev, "%s STARTTRANSFER failed", dep->name); in dwc3_ep0_start_trans()
[all …]
H A Dgadget.h73 struct dwc3_ep *dep = req->dep; in dwc3_gadget_move_request_queued() local
76 list_move_tail(&req->list, &dep->req_queued); in dwc3_gadget_move_request_queued()
79 void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req,
89 int __dwc3_gadget_ep_set_halt(struct dwc3_ep *dep, int value, int protocol);
H A Dcore.h616 struct dwc3_ep *dep; member
/rk3399_rockchip-uboot/scripts/kconfig/
H A Dmenu.c107 void menu_add_dep(struct expr *dep) in menu_add_dep() argument
109 current_entry->dep = expr_alloc_and(current_entry->dep, menu_check_dep(dep)); in menu_add_dep()
128 …uct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep) in menu_add_prop() argument
134 prop->visible.expr = menu_check_dep(dep); in menu_add_prop()
178 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep) in menu_add_prompt() argument
180 return menu_add_prop(type, prompt, NULL, dep); in menu_add_prompt()
189 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) in menu_add_expr() argument
191 menu_add_prop(type, NULL, expr, dep); in menu_add_expr()
194 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep) in menu_add_symbol() argument
196 menu_add_prop(type, NULL, expr_alloc_symbol(sym), dep); in menu_add_symbol()
[all …]
H A Dlkc.h104 void menu_add_dep(struct expr *dep);
105 void menu_add_visibility(struct expr *dep);
106 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep);
107 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep);
108 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
H A Dexpr.h49 #define EXPR_NOT(dep) (2-(dep)) argument
176 struct expr *dep; member
217 int expr_contains_symbol(struct expr *dep, struct symbol *sym);
218 bool expr_depends_symbol(struct expr *dep, struct symbol *sym);
H A Dstreamline_config.pl223 my $dep = $3;
224 if ($dep !~ /^\s*(y|m|n)\s*$/) {
225 $dep =~ s/.*\sif\s+//;
226 $depends{$config} .= " " . $dep;
227 dprint "Added default depends $dep to $config\n";
H A Dexpr.c751 int expr_contains_symbol(struct expr *dep, struct symbol *sym) in expr_contains_symbol() argument
753 if (!dep) in expr_contains_symbol()
756 switch (dep->type) { in expr_contains_symbol()
759 return expr_contains_symbol(dep->left.expr, sym) || in expr_contains_symbol()
760 expr_contains_symbol(dep->right.expr, sym); in expr_contains_symbol()
762 return dep->left.sym == sym; in expr_contains_symbol()
769 return dep->left.sym == sym || in expr_contains_symbol()
770 dep->right.sym == sym; in expr_contains_symbol()
772 return expr_contains_symbol(dep->left.expr, sym); in expr_contains_symbol()
779 bool expr_depends_symbol(struct expr *dep, struct symbol *sym) in expr_depends_symbol() argument
[all …]
/rk3399_rockchip-uboot/board/intel/edison/
H A Dconfig.mk18 HOSTCFLAGS_autoconf.mk.dep = -Wno-variadic-macros
/rk3399_rockchip-uboot/scripts/
H A DMakefile.autoconf13 __all: include/autoconf.mk include/autoconf.mk.dep
49 include/autoconf.mk.dep: include/config.h FORCE
/rk3399_rockchip-uboot/tools/buildman/
H A Dkconfiglib.py1482 s.dep.add(sym)
2344 self.dep = set()
2499 res = set(self.dep)
2500 for s in self.dep:
2509 res |= sibling.dep
2510 for s in sibling.dep:
/rk3399_rockchip-uboot/
H A Dmake.sh519 COMMON_H=`grep "_common.h:" include/autoconf.mk.dep | awk -F "/" '{ printf $3 }'`
H A DMakefile531 -include include/autoconf.mk.dep
H A DREADME4338 make dep