Searched defs:load (Results 1 - 25 of 38) sorted by relevance

12

/drivers/remoteproc/
H A Dremoteproc_internal.h32 * @load: load firmeware to memory, where the remote processor
43 int (*load)(struct rproc *rproc, const struct firmware *fw); member in struct:rproc_fw_ops
92 if (rproc->fw_ops->load)
93 return rproc->fw_ops->load(rproc, fw);
/drivers/net/can/softing/
H A Dsofting_platform.h31 } boot, load, app; member in struct:softing_platform_data
/drivers/cpufreq/
H A Dcpufreq_conservative.c47 static void cs_check_cpu(int cpu, unsigned int load) argument
62 if (load > cs_tuners->up_threshold) {
85 if (load < cs_tuners->down_threshold) {
H A Dcpufreq_governor.c70 unsigned int load; local
116 * on this CPU now, it would be unfair to calculate 'load' the
118 * near-zero load, irrespective of how CPU intensive that task
122 * To avoid this, we reuse the 'load' from the previous
125 * this copy, lest we get stuck at a high load (high frequency)
126 * for too long, even when the current system load has actually
142 load = j_cdbs->prev_load;
146 * the previous load only once, upon the first wake-up
151 load = 100 * (wall_time - idle_time) / wall_time;
152 j_cdbs->prev_load = load;
[all...]
H A Dcpufreq_ondemand.c153 * proportional to load.
155 static void od_check_cpu(int cpu, unsigned int load) argument
165 if (load > od_tuners->up_threshold) {
172 /* Calculate the next frequency proportional to load */
177 freq_next = min_f + load * (max_f - min_f) / 100;
/drivers/cpuidle/governors/
H A Dmenu.c109 * a value of 10 is added for each point of "per cpu load average" we have.
114 * The load average factor gives a longer term (few seconds) input to the
117 * represented in the system load average.
137 static inline int get_loadavg(unsigned long load) argument
139 return LOAD_INT(load) * 10 + LOAD_FRAC(load) / 10;
175 static inline int performance_multiplier(unsigned long nr_iowaiters, unsigned long load) argument
184 * even when the average cpu load is under 10%.
/drivers/media/rc/
H A Dir-rx51.c78 u32 load, match; local
80 load = -(lirc_rx51->fclk_khz * 1000 / lirc_rx51->freq);
81 match = -(lirc_rx51->duty_cycle * -load / 100);
82 omap_dm_timer_set_load(lirc_rx51->pwm_timer, 1, load);
/drivers/net/bonding/
H A Dbond_alb.h137 u32 load; /* Each slave sums the loadHistory of all clients member in struct:tlb_slave_info
/drivers/watchdog/
H A Dsp805_wdt.c61 * @load_val: load value to be set for current timeout
77 /* This routine finds load value that will reset system in required timout */
81 u64 load, rate; local
89 * load is half of what should be required.
91 load = div_u64(rate, 2) * timeout - 1;
93 load = (load > LOAD_MAX) ? LOAD_MAX : load;
94 load = (load < LOAD_MI
109 u64 load, rate; local
[all...]
/drivers/macintosh/
H A Drack-meter.c13 * a bit less "immediate" but giving instead a more average load over
222 int i, offset, load, cumm, pause; local
235 load = (9 * (total_ticks - idle_ticks)) / total_ticks;
240 u8 ub = (load > i) ? 0xff : 0;
/drivers/misc/genwqe/
H A Dcard_dev.c499 * @load: details about image load
507 struct genwqe_bitstream *load)
522 if ((load->size & 0x3) != 0)
525 if (((unsigned long)(load->data_addr) & ~PAGE_MASK) != 0)
529 switch ((char)load->partition) {
543 buf = (u8 __user *)load->data_addr;
548 blocks_to_flash = load->size / FLASH_BLOCK;
549 while (load->size) {
556 tocopy = min_t(size_t, load
506 do_flash_update(struct genwqe_file *cfile, struct genwqe_bitstream *load) argument
643 do_flash_read(struct genwqe_file *cfile, struct genwqe_bitstream *load) argument
1149 struct genwqe_bitstream load; local
1170 struct genwqe_bitstream load; local
[all...]
/drivers/usb/host/
H A Dohci-q.c106 * does some load balancing; returns the branch, or negative errno.
108 static int balance (struct ohci_hcd *ohci, int interval, int load) argument
120 if (branch < 0 || ohci->load [branch] > ohci->load [i]) {
125 if ((ohci->load [j] + load) > 900)
148 ed, ed->branch, ed->load, ed->interval);
175 ohci->load [i] += ed->load;
177 ohci_to_hcd(ohci)->self.bandwidth_allocated += ed->load / e
[all...]
H A Dsl811-hcd.c459 sl811->load[i] -= ep->load;
464 -= ep->load / ep->period;
758 * NOTE: the periodic schedule is a sparse tree, with the load for
763 static int balance(struct sl811 *sl811, u16 period, u16 load) argument
771 if (branch < 0 || sl811->load[branch] > sl811->load[i]) {
775 if ((sl811->load[j] + load)
879 ep->load
[all...]
H A Duhci-q.c280 qh->load = usb_calc_bus_time(udev->speed,
609 * Find the highest existing bandwidth load for a given phase and period.
613 int highest_load = uhci->load[phase];
616 highest_load = max_t(int, highest_load, uhci->load[phase]);
629 * its load value. */
633 int phase, load; local
639 load = uhci_highest_load(uhci, phase, qh->period);
640 if (load < minimax_load) {
641 minimax_load = load;
648 if (minimax_load + qh->load > 90
663 int load = qh->load; local
687 qh->period, qh->phase, load); local
696 int load = qh->load; local
720 qh->period, qh->phase, load); local
[all...]
H A Disp116x-hcd.c331 isp116x->load[i] -= ep->load;
335 ep->load / ep->period;
483 u16 load = 0; local
503 if ((load = isp116x->load[index])) {
528 len = (MAX_LOAD_LIMIT - load) / byte_time;
549 load += len * byte_time;
550 if (load > MAX_LOAD_LIMIT)
650 static int balance(struct isp116x *isp116x, u16 period, u16 load) argument
[all...]
H A Dsl811.h153 u16 load[PERIODIC_SIZE]; member in struct:sl811
184 u16 load; member in struct:sl811h_ep
/drivers/gpu/host1x/
H A Ddev.h76 u32 (*load)(struct host1x_syncpt *syncpt); member in struct:host1x_syncpt_ops
162 return host->syncpt_op->load(sp);
/drivers/staging/comedi/drivers/
H A Ddas6402.c174 static void das6402_enable_counter(struct comedi_device *dev, bool load) argument
179 if (load) {
270 /* load the mux for single channel conversion */
/drivers/gpu/drm/nouveau/core/engine/fifo/
H A Dnve0.c561 u32 load = (stat & 0x00002000); local
563 u32 chid = load ? next : prev;
/drivers/gpu/drm/nouveau/
H A Dnv50_display.c1605 struct nv50_disp_dac_load_v0 load; member in struct:__anon920
1614 args.load.data = nouveau_drm(encoder->dev)->vbios.dactestval;
1615 if (args.load.data == 0)
1616 args.load.data = 340;
1619 if (ret || !args.load.load)
/drivers/isdn/hardware/eicon/
H A Dio.h35 systems that do provide per card load event)
204 int (*load)(PISDN_ADAPTER); member in struct:_ISDN_ADAPTER
/drivers/net/wireless/iwlegacy/
H A D4965-rs.c267 * increment traffic load value for tid and also remove
288 tl = &lq_data->load[tid];
321 get the traffic load value for tid
334 tl = &(lq_data->load[tid]);
357 u32 load; local
359 load = il4965_rs_tl_get_load(lq_data, tid);
361 if (load > IL_AGG_LOAD_THRESHOLD) {
374 D_HT("Aggregation not enabled for tid %d because load = %u\n",
375 tid, load);
387 IL_ERR("tid exceeds max load coun
[all...]
/drivers/net/wireless/iwlwifi/dvm/
H A Drs.c281 * increment traffic load value for tid and also remove
302 tl = &lq_data->load[tid];
365 get the traffic load value for tid
377 tl = &(lq_data->load[tid]);
400 u32 load; local
413 load = rs_tl_get_load(lq_data, tid);
1456 IWL_ERR(priv, "Invalid BT load %d\n", priv->bt_traffic_load);
1631 IWL_ERR(priv, "Invalid BT load %d\n", priv->bt_traffic_load);
1802 IWL_ERR(priv, "Invalid BT load %d\n", priv->bt_traffic_load);
1972 IWL_ERR(priv, "Invalid BT load
[all...]
H A Drs.h253 /* load per tid defines for A-MPDU activation */
371 struct iwl_traffic_load load[IWL_MAX_TID_COUNT]; member in struct:iwl_lq_sta
/drivers/staging/slicoss/
H A Dslicoss.c398 "Failed to load firmware %s\n", file);
476 "Failed to load firmware %s\n", file);
805 u32 load = card->events; local
815 if (load > SLIC_LOAD_5)
817 else if (load > SLIC_LOAD_4)
819 else if (load > SLIC_LOAD_3)
821 else if (load > SLIC_LOAD_2)
823 else if (load > SLIC_LOAD_1)
833 if (load > SLIC_LOAD_5)
835 else if (load > SLIC_LOAD_
[all...]

Completed in 767 milliseconds

12