Searched refs:level (Results 1 - 25 of 84) sorted by relevance

1234

/u-boot/drivers/ddr/marvell/a38x/
H A Dddr3_logging_def.h10 #define DEBUG_TRAINING_BIST_ENGINE(level, s)
11 #define DEBUG_TRAINING_IP(level, s)
12 #define DEBUG_CENTRALIZATION_ENGINE(level, s)
13 #define DEBUG_TRAINING_HW_ALG(level, s)
14 #define DEBUG_TRAINING_IP_ENGINE(level, s)
15 #define DEBUG_LEVELING(level, s)
16 #define DEBUG_PBS_ENGINE(level, s)
17 #define DEBUG_TRAINING_STATIC_IP(level, s)
18 #define DEBUG_TRAINING_ACCESS(level, s)
21 #define DEBUG_TRAINING_BIST_ENGINE(level,
[all...]
/u-boot/arch/mips/mach-octeon/include/mach/
H A Dcvmx-pko3-resources.h13 * @param level is the PKO queue level.
19 int cvmx_pko_alloc_queues(int node, int level, int owner, int base_queue,
23 * Free an allocated/reserved PKO queues for a certain level and owner
26 * @param level of PKO queue
30 int cvmx_pko_free_queues(int node, int level, int owner);
34 int cvmx_pko3_num_level_queues(enum cvmx_pko3_level_e level);
/u-boot/include/dm/
H A Ddevice_compat.h32 * @level: Log level of the message
37 * the if statements can be optimized out (as @level should be a constant known
47 #define dev_printk_emit(cat, level, fmt, ...) \
49 if ((_DEBUG && level == LOGL_DEBUG) || \
50 (_VERBOSE_DEBUG && level == LOGL_DEBUG_CONTENT)) \
53 log(cat, level, fmt, ##__VA_ARGS__); \
54 else if (level < CONFIG_VAL(LOGLEVEL)) \
60 * @level: Log level o
[all...]
/u-boot/arch/arm/cpu/armv8/
H A Dcache_v8.c121 /* Returns the LSB number for a PTE on level <level> */
122 static int level2shift(int level) argument
124 /* Page is 12 bits wide, every level translates 9 bits */
125 return (12 + 9 * (3 - level));
128 static u64 *find_pte(u64 addr, int level) argument
136 debug("addr=%llx level=%d\n", addr, level);
142 if (level < start_level)
150 debug("idx=%llx PTE %p at level
167 __cmo_on_leaves(void (*cmo_fn)(unsigned long, unsigned long), u64 pte, int level, u64 base) argument
272 split_block(u64 *pte, int level) argument
302 map_range(u64 virt, u64 phys, u64 size, int level, u64 *table, u64 attrs) argument
347 int level = 0; local
357 count_range(u64 virt, u64 size, int level, int *cntp) argument
387 int i, count = 0, level = 0; local
600 set_one_region(u64 start, u64 size, u64 attrs, bool flag, int level) argument
660 int level; local
693 int level; local
[all...]
/u-boot/arch/mips/mach-octeon/
H A Dcvmx-helper-pko3.c56 /* channels are present at L2 queue level by default */
170 enum cvmx_pko3_level_e level; local
210 level = CVMX_PKO_PORT_QUEUES;
213 l1_q_num = cvmx_pko_alloc_queues(node, level, res_owner, -1, 1);
226 /* next queue level = L2/SQ */
227 level = __cvmx_pko3_sq_lvl_next(level);
229 /* allocate level 2 queues, one per channel */
231 cvmx_pko_alloc_queues(node, level, res_owner, -1, num_chans);
238 res = cvmx_pko3_sq_config_children(node, level, l1_q_nu
336 enum cvmx_pko3_level_e level; local
497 enum cvmx_pko3_level_e level; local
641 enum cvmx_pko3_level_e level; local
[all...]
H A Dcvmx-pko3-resources.c95 int cvmx_pko3_num_level_queues(enum cvmx_pko3_level_e level) argument
101 nq = cvmx_pko_num_queues_78XX[level];
105 nq = cvmx_pko_num_queues_73XX[level];
108 if (nq == 0 || level >= ne) {
109 printf("ERROR: %s: queue level %#x invalid\n", __func__, level);
120 printf("ERROR: %s: queue level %#x invalid\n", __func__,
139 printf("ERROR: %s: queue level %#x invalid\n", __func__,
186 * @param level of PKO queue
192 int cvmx_pko_alloc_queues(int node, int level, in argument
[all...]
/u-boot/fs/btrfs/
H A Dctree.c216 struct btrfs_path *path, int level)
223 if (path->nodes[level + 1]) {
224 parent = path->nodes[level + 1];
225 btrfs_node_key(parent, &key, path->slots[level + 1]);
228 if (level == 0)
231 ret = btrfs_check_node(fs_info, key_ptr, path->nodes[level]);
303 int level = btrfs_header_level(parent); local
310 if (level == 0)
318 if (btrfs_header_level(ret) != level - 1) {
319 error("child eb corrupted: parent bytenr=%llu item=%d parent level
215 check_block(struct btrfs_fs_info *fs_info, struct btrfs_path *path, int level) argument
396 int level; local
608 int level = 1; local
669 int level = path->lowest_level + 1; local
[all...]
/u-boot/common/
H A Dlog.c89 const char *log_get_level_name(enum log_level_t level) argument
91 if (level >= LOGL_COUNT)
93 return log_level_name[level];
163 /* If there are no filters, filter on the default log level */
165 if (rec->level > gd->default_log_level)
172 if (rec->level < filt->level)
174 } else if (rec->level > filt->level) {
238 int _log(enum log_category_t cat, enum log_level_t level, cons argument
294 _log_buffer(enum log_category_t cat, enum log_level_t level, const char *file, int line, const char *func, ulong addr, const void *data, uint width, uint count, uint linelen) argument
321 log_add_filter_flags(const char *drv_name, enum log_category_t cat_list[], enum log_level_t level, const char *file_list, int flags) argument
[all...]
H A Dlog_console.c23 * - level is in CAPS
33 printf("%s.", log_get_level_name(rec->level));
/u-boot/tools/u_boot_pylib/
H A Dtout.py18 to the user. It provides for simple verbosity level control and can
26 verbose: Verbosity level: 0=silent, 1=progress, 3=full, 4=debug
73 def _output(level, msg, color=None):
77 level: Verbosity level for this message. It will only be displayed if
78 this as high as the currently selected level.
82 if verbose >= level:
86 if level < NOTICE:
91 def do_output(level, msg):
95 level
[all...]
/u-boot/fs/ubifs/
H A Dtnc_misc.c36 int level, iip, level_search = 0; local
45 if (znode->level == 0)
50 level = znode->level;
54 ubifs_assert(znode->level <= zr->level);
67 /* This level is done, switch to the lower one */
68 level -= 1;
69 if (level_search || level < 0)
72 * level ('level_searc
[all...]
H A Dtnc.c217 if (znode->level != 0) {
632 while (znode->level != 0) {
676 while (znode->level != 0) {
740 * level 1 | Key0 | Key1 |
745 * level 0 | Key0 | | Key2 |
1104 if (c->zroot.znode->level > BOTTOM_UP_HEIGHT) {
1106 c->bottom_up_buf = kmalloc(c->zroot.znode->level * sizeof(int),
1112 if (c->zroot.znode->level) {
1121 ubifs_assert(p < c->zroot.znode->level);
1154 * ubifs_lookup_level0 - search for zero-level znod
2909 int level = znode->level; local
2946 int level = znode->level; local
2996 lookup_znode(struct ubifs_info *c, union ubifs_key *key, int level, int lnum, int offs) argument
3125 is_idx_node_in_tnc(struct ubifs_info *c, union ubifs_key *key, int level, int lnum, int offs) argument
3222 ubifs_tnc_has_node(struct ubifs_info *c, union ubifs_key *key, int level, int lnum, int offs, int is_idx) argument
3262 ubifs_dirty_idx_node(struct ubifs_info *c, union ubifs_key *key, int level, int lnum, int offs) argument
[all...]
/u-boot/cmd/
H A Dlog.c20 ulong level; local
22 if (!strict_strtoul(arg, 10, &level)) {
23 if (level > _LOG_MAX_LEVEL) {
28 return level;
33 printf("Unknown log level \"%s\"\n", arg);
120 printf("num policy level categories files\n");
125 log_get_level_name(filt->level));
160 enum log_level_t level = LOGL_MAX; local
206 printf("Log level set twice\n"); \
209 level
345 enum log_level_t level; local
[all...]
H A Dfdt.c458 /* get the num nodes at this level */
501 * Print (recursive) / List (single level)
511 * list is an alias for print, but limited to 1 level
1008 int level = 0; /* keep track of nesting level */ local
1046 while(level >= 0) {
1051 if (level <= depth) {
1057 &tabs[MAX_LEVEL - level], pathp);
1059 level++;
1060 if (level >
[all...]
/u-boot/lib/efi_selftest/
H A Defi_selftest_fdt.c63 size_t level = 0; local
86 if (level == 1)
88 ++level;
101 ((level == 1 && !node) ||
102 (level == 2 && node &&
133 --level;
/u-boot/board/gateworks/venice/
H A Deeprom.h30 const char *eeprom_get_dtb_name(int level, char *buf, int len);
/u-boot/drivers/power/regulator/
H A Dnpcm8xx_regulator.c61 u32 val, level; local
73 level = VOLT_LEV0;
75 level = VOLT_LEV1;
79 /* Set voltage level */
82 val |= level << supp->reg_shift;
/u-boot/scripts/dtc/
H A Dtreesource.c49 static void write_prefix(FILE *f, int level) argument
53 for (i = 0; i < level; i++)
236 static void write_tree_source_node(FILE *f, struct node *tree, int level) argument
242 write_prefix(f, level);
251 write_prefix(f, level+1);
259 write_tree_source_node(f, child, level+1);
261 write_prefix(f, level);
/u-boot/arch/arm/cpu/armv7/
H A Dcache_v7_asm.S32 mov r10, #0 @ start clean at cache level 0
34 add r2, r10, r10, lsr #1 @ work out 3x current cache level
37 cmp r1, #2 @ see what cache we have at this level
39 mcr p15, 2, r10, c0, c0, 0 @ select current cache level in cssr
68 mov r10, #0 @ swith back to cache level 0
69 mcr p15, 2, r10, c0, c0, 0 @ select current cache level in cssr
102 mov r10, #0 @ start clean at cache level 0
104 add r2, r10, r10, lsr #1 @ work out 3x current cache level
107 cmp r1, #2 @ see what cache we have at this level
109 mcr p15, 2, r10, c0, c0, 0 @ select current cache level i
[all...]
/u-boot/drivers/video/bridge/
H A Dps862x.c64 int level = percent * 255 / 100; local
66 debug("%s: level=%d\n", __func__, level);
67 return ps8622_write(dev, 0x01, 0xa7, level);
/u-boot/drivers/reset/
H A Dreset-sifive.c24 static int sifive_rst_trigger(struct reset_ctl *rst, bool level) argument
31 if (level)
/u-boot/drivers/power/pmic/
H A Das3722_gpio.c37 int level)
54 if (level == 0) {
36 as3722_gpio_set_value(struct udevice *dev, unsigned int gpio, int level) argument
/u-boot/lib/zlib/
H A Ddeflate.c114 * the desired pack level (0..9). The values given below have been tuned to
172 * If this file is compiled with -DFASTEST, the compression level is forced
199 int ZEXPORT deflateInit_(strm, level, stream_size)
201 int level;
204 return deflateInit2_(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL,
210 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
213 int level;
233 if (level != 0) level = 1;
235 if (level
[all...]
/u-boot/lib/efi_loader/
H A Dboothart.c132 size_t level = 0; local
155 if (level == 1)
157 ++level;
170 ((level == 1 && !node) ||
171 (level == 2 && node &&
204 --level;
/u-boot/drivers/video/
H A Dpwm_backlight.c34 * @cur_level: Current level for the backlight (index or value)
35 * @default_level: Default level for the backlight (index or value)
36 * @min_level: Minimum level of the backlight (full off)
37 * @max_level: Maximum level of the backlight (full on)
147 int level; local
160 level = priv->default_level;
163 level = priv->levels[percent * (priv->num_levels - 1)
166 level = priv->min_level +
171 priv->cur_level = level;
233 index = dev_read_u32_default(dev, "default-brightness-level", 25
[all...]

Completed in 178 milliseconds

1234