/device/soc/hisilicon/hi3751v350/sdk_linux/ |
H A D | cfg.mak | 27 # CFG_LINUX_PRODUCT is not set 30 # CFG_DRV_AARCH64_LINUX_GNU is not set 31 # CFG_DRV_AARCH64_HISIV610_LINUX is not set 33 # CFG_APP_AARCH64_LINUX_GNU is not set 36 # CFG_CPU_ARCH_ARM64 is not set 39 # CFG_HI_HDR_SUPPORT is not set 43 # CFG_HI_OPTM_SIZE_SUPPORT is not set 44 # CFG_HI_UNIFIED_IMAGE_SUPPORT is not set 58 # CFG_HI_NAND_SUPPORT is not set 59 # CFG_HI_SPI_SUPPORT is not set [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/prog_tests/ |
H A D | arg_parsing.c | 6 static void init_test_filter_set(struct test_filter_set *set) in init_test_filter_set() argument 8 set->cnt = 0; in init_test_filter_set() 9 set->tests = NULL; in init_test_filter_set() 12 static void free_test_filter_set(struct test_filter_set *set) in free_test_filter_set() argument 16 for (i = 0; i < set->cnt; i++) { in free_test_filter_set() 17 for (j = 0; j < set->tests[i].subtest_cnt; j++) in free_test_filter_set() 18 free((void *)set->tests[i].subtests[j]); in free_test_filter_set() 19 free(set->tests[i].subtests); in free_test_filter_set() 20 free(set->tests[i].name); in free_test_filter_set() 23 free(set in free_test_filter_set() 29 struct test_filter_set set; test_parse_test_list() local 118 struct test_filter_set set; test_parse_test_list_file() local [all...] |
/kernel/linux/linux-5.10/arch/m68k/fpsp040/ |
H A D | fpsp.h | 79 .set LOCAL_SIZE,192 | bytes needed for local variables 80 .set LV,-LOCAL_SIZE | convenient base value 82 .set USER_DA,LV+0 | save space for D0-D1,A0-A1 83 .set USER_D0,LV+0 | saved user D0 84 .set USER_D1,LV+4 | saved user D1 85 .set USER_A0,LV+8 | saved user A0 86 .set USER_A1,LV+12 | saved user A1 87 .set USER_FP0,LV+16 | saved user FP0 88 .set USER_FP1,LV+28 | saved user FP1 89 .set USER_FP [all...] |
/kernel/linux/linux-6.6/arch/m68k/fpsp040/ |
H A D | fpsp.h | 79 .set LOCAL_SIZE,192 | bytes needed for local variables 80 .set LV,-LOCAL_SIZE | convenient base value 82 .set USER_DA,LV+0 | save space for D0-D1,A0-A1 83 .set USER_D0,LV+0 | saved user D0 84 .set USER_D1,LV+4 | saved user D1 85 .set USER_A0,LV+8 | saved user A0 86 .set USER_A1,LV+12 | saved user A1 87 .set USER_FP0,LV+16 | saved user FP0 88 .set USER_FP1,LV+28 | saved user FP1 89 .set USER_FP [all...] |
/kernel/linux/linux-6.6/arch/mips/include/asm/ |
H A D | asmmacro.h | 22 /* preprocessor replaces the fp in ".set fp=64" with $30 otherwise */ 85 .set push 86 .set hardfloat 105 .set pop 109 .set push 110 .set mips64r2 111 .set fp=64 112 .set hardfloat 129 .set pop 144 .set pus [all...] |
/kernel/linux/linux-6.6/tools/lib/bpf/ |
H A D | strset.c | 18 /* lookup index for each unique string in strings set */ 41 struct strset *set = calloc(1, sizeof(*set)); in strset__new() local 45 if (!set) in strset__new() 48 hash = hashmap__new(strset_hash_fn, strset_equal_fn, set); in strset__new() 52 set->strs_data_max_len = max_data_sz; in strset__new() 53 set->strs_hash = hash; in strset__new() 58 set->strs_data = malloc(init_data_sz); in strset__new() 59 if (!set->strs_data) in strset__new() 62 memcpy(set in strset__new() 84 strset__free(struct strset *set) strset__free() argument 94 strset__data_size(const struct strset *set) strset__data_size() argument 99 strset__data(const struct strset *set) strset__data() argument 104 strset_add_str_mem(struct strset *set, size_t add_sz) strset_add_str_mem() argument 116 strset__find_str(struct strset *set, const char *s) strset__find_str() argument 142 strset__add_str(struct strset *set, const char *s) strset__add_str() argument [all...] |
/kernel/linux/linux-5.10/drivers/s390/cio/ |
H A D | idset.c | 26 struct idset *set; in idset_new() local 28 set = vmalloc(sizeof(struct idset) + bitmap_size(num_ssid, num_id)); in idset_new() 29 if (set) { in idset_new() 30 set->num_ssid = num_ssid; in idset_new() 31 set->num_id = num_id; in idset_new() 32 memset(set->bitmap, 0, bitmap_size(num_ssid, num_id)); in idset_new() 34 return set; in idset_new() 37 void idset_free(struct idset *set) in idset_free() argument 39 vfree(set); in idset_free() 42 void idset_fill(struct idset *set) in idset_fill() argument 47 idset_add(struct idset *set, int ssid, int id) idset_add() argument 52 idset_del(struct idset *set, int ssid, int id) idset_del() argument 57 idset_contains(struct idset *set, int ssid, int id) idset_contains() argument 67 idset_sch_add(struct idset *set, struct subchannel_id schid) idset_sch_add() argument 72 idset_sch_del(struct idset *set, struct subchannel_id schid) idset_sch_del() argument 78 idset_sch_del_subseq(struct idset *set, struct subchannel_id schid) idset_sch_del_subseq() argument 85 idset_sch_contains(struct idset *set, struct subchannel_id schid) idset_sch_contains() argument 90 idset_is_empty(struct idset *set) idset_is_empty() argument [all...] |
/kernel/linux/linux-6.6/drivers/s390/cio/ |
H A D | idset.c | 26 struct idset *set; in idset_new() local 28 set = vmalloc(sizeof(struct idset) + bitmap_size(num_ssid, num_id)); in idset_new() 29 if (set) { in idset_new() 30 set->num_ssid = num_ssid; in idset_new() 31 set->num_id = num_id; in idset_new() 32 memset(set->bitmap, 0, bitmap_size(num_ssid, num_id)); in idset_new() 34 return set; in idset_new() 37 void idset_free(struct idset *set) in idset_free() argument 39 vfree(set); in idset_free() 42 void idset_fill(struct idset *set) in idset_fill() argument 47 idset_add(struct idset *set, int ssid, int id) idset_add() argument 52 idset_del(struct idset *set, int ssid, int id) idset_del() argument 57 idset_contains(struct idset *set, int ssid, int id) idset_contains() argument 67 idset_sch_add(struct idset *set, struct subchannel_id schid) idset_sch_add() argument 72 idset_sch_del(struct idset *set, struct subchannel_id schid) idset_sch_del() argument 78 idset_sch_del_subseq(struct idset *set, struct subchannel_id schid) idset_sch_del_subseq() argument 85 idset_sch_contains(struct idset *set, struct subchannel_id schid) idset_sch_contains() argument 90 idset_is_empty(struct idset *set) idset_is_empty() argument [all...] |
/kernel/linux/linux-5.10/arch/mips/include/asm/ |
H A D | asmmacro.h | 22 /* preprocessor replaces the fp in ".set fp=64" with $30 otherwise */ 85 .set push 105 .set pop 109 .set push 110 .set mips64r2 111 .set fp=64 129 .set pop 144 .set push 164 .set pop 168 .set pus [all...] |
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/ |
H A D | cfg.mak | 25 # CONFIG_HI3559AV100ES is not set 26 # CONFIG_HI3559AV100 is not set 27 # CONFIG_HI3519AV100 is not set 29 # CONFIG_HI3516EV200 is not set 35 # CONFIG_SUBCHIP_HI3559V200 is not set 36 # CONFIG_SUBCHIP_HI3562V100 is not set 38 # CONFIG_AMP is not set 42 # CONFIG_VERSION_FPGA is not set 46 # CONFIG_HUAWEI_LITEOS_OS is not set 48 # CONFIG_KERNEL_SPACE is not set [all...] |
/kernel/linux/linux-5.10/net/netfilter/ipset/ |
H A D | ip_set_bitmap_gen.h | 34 #define get_ext(set, map, id) ((map)->extensions + ((set)->dsize * (id))) 37 mtype_gc_init(struct ip_set *set, void (*gc)(struct timer_list *t)) in mtype_gc_init() argument 39 struct mtype *map = set->data; in mtype_gc_init() 42 mod_timer(&map->gc, jiffies + IPSET_GC_PERIOD(set->timeout) * HZ); in mtype_gc_init() 46 mtype_ext_cleanup(struct ip_set *set) in mtype_ext_cleanup() argument 48 struct mtype *map = set->data; in mtype_ext_cleanup() 53 ip_set_ext_destroy(set, get_ext(set, map, id)); in mtype_ext_cleanup() 57 mtype_destroy(struct ip_set *set) in mtype_destroy() argument 70 mtype_flush(struct ip_set *set) mtype_flush() argument 90 mtype_head(struct ip_set *set, struct sk_buff *skb) mtype_head() argument 114 mtype_test(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) mtype_test() argument 128 mtype_add(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) mtype_add() argument 153 mtype_add_timeout(ext_timeout(x, set), e, ext, set, map, ret); mtype_add() local 173 mtype_del(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) mtype_del() argument 201 mtype_list(const struct ip_set *set, struct sk_buff *skb, struct netlink_callback *cb) mtype_list() argument 266 struct ip_set *set = map->set; mtype_gc() local 290 mtype_cancel_gc(struct ip_set *set) mtype_cancel_gc() argument [all...] |
H A D | ip_set_list_set.c | 4 /* Kernel module implementing an IP set type: the list:set type */ 22 IP_SET_MODULE_DESC("list:set", IPSET_TYPE_REV_MIN, IPSET_TYPE_REV_MAX); 23 MODULE_ALIAS("ip_set_list:set"); 29 struct ip_set *set; /* Sigh, in order to cleanup reference */ member 41 u32 size; /* size of set list array */ 43 struct ip_set *set; /* attached to this ip_set */ member 45 struct list_head members; /* the set members */ 49 list_set_ktest(struct ip_set *set, const struct sk_buff *skb, in list_set_ktest() argument 53 struct list_set *map = set in list_set_ktest() 74 list_set_kadd(struct ip_set *set, const struct sk_buff *skb, const struct xt_action_param *par, struct ip_set_adt_opt *opt, const struct ip_set_ext *ext) list_set_kadd() argument 94 list_set_kdel(struct ip_set *set, const struct sk_buff *skb, const struct xt_action_param *par, struct ip_set_adt_opt *opt, const struct ip_set_ext *ext) list_set_kdel() argument 114 list_set_kadt(struct ip_set *set, const struct sk_buff *skb, const struct xt_action_param *par, enum ipset_adt adt, struct ip_set_adt_opt *opt) list_set_kadt() argument 146 struct ip_set *set = e->set; __list_set_del_rcu() local 153 list_set_del(struct ip_set *set, struct set_elem *e) list_set_del() argument 164 list_set_replace(struct ip_set *set, struct set_elem *e, struct set_elem *old) list_set_replace() argument 174 set_cleanup_entries(struct ip_set *set) set_cleanup_entries() argument 185 list_set_utest(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) list_set_utest() argument 217 list_set_init_extensions(struct ip_set *set, const struct ip_set_ext *ext, struct set_elem *e) list_set_init_extensions() argument 232 list_set_uadd(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) list_set_uadd() argument 314 list_set_udel(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) list_set_udel() argument 346 list_set_uadt(struct ip_set *set, struct nlattr *tb[], enum ipset_adt adt, u32 *lineno, u32 flags, bool retried) list_set_uadt() argument 412 list_set_flush(struct ip_set *set) list_set_flush() argument 424 list_set_destroy(struct ip_set *set) list_set_destroy() argument 456 list_set_head(struct ip_set *set, struct sk_buff *skb) list_set_head() argument 480 list_set_list(const struct ip_set *set, struct sk_buff *skb, struct netlink_callback *cb) list_set_list() argument 546 list_set_cancel_gc(struct ip_set *set) list_set_cancel_gc() argument 574 struct ip_set *set = map->set; list_set_gc() local 585 list_set_gc_init(struct ip_set *set, void (*gc)(struct timer_list *t)) list_set_gc_init() argument 596 init_list_set(struct net *net, struct ip_set *set, u32 size) init_list_set() argument 614 list_set_create(struct net *net, struct ip_set *set, struct nlattr *tb[], u32 flags) list_set_create() argument [all...] |
/kernel/linux/linux-6.6/net/netfilter/ipset/ |
H A D | ip_set_bitmap_gen.h | 34 #define get_ext(set, map, id) ((map)->extensions + ((set)->dsize * (id))) 37 mtype_gc_init(struct ip_set *set, void (*gc)(struct timer_list *t)) in mtype_gc_init() argument 39 struct mtype *map = set->data; in mtype_gc_init() 42 mod_timer(&map->gc, jiffies + IPSET_GC_PERIOD(set->timeout) * HZ); in mtype_gc_init() 46 mtype_ext_cleanup(struct ip_set *set) in mtype_ext_cleanup() argument 48 struct mtype *map = set->data; in mtype_ext_cleanup() 53 ip_set_ext_destroy(set, get_ext(set, map, id)); in mtype_ext_cleanup() 57 mtype_destroy(struct ip_set *set) in mtype_destroy() argument 70 mtype_flush(struct ip_set *set) mtype_flush() argument 90 mtype_head(struct ip_set *set, struct sk_buff *skb) mtype_head() argument 114 mtype_test(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) mtype_test() argument 128 mtype_add(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) mtype_add() argument 153 mtype_add_timeout(ext_timeout(x, set), e, ext, set, map, ret); mtype_add() local 173 mtype_del(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) mtype_del() argument 201 mtype_list(const struct ip_set *set, struct sk_buff *skb, struct netlink_callback *cb) mtype_list() argument 266 struct ip_set *set = map->set; mtype_gc() local 290 mtype_cancel_gc(struct ip_set *set) mtype_cancel_gc() argument [all...] |
H A D | ip_set_list_set.c | 4 /* Kernel module implementing an IP set type: the list:set type */ 22 IP_SET_MODULE_DESC("list:set", IPSET_TYPE_REV_MIN, IPSET_TYPE_REV_MAX); 23 MODULE_ALIAS("ip_set_list:set"); 29 struct ip_set *set; /* Sigh, in order to cleanup reference */ member 41 u32 size; /* size of set list array */ 43 struct ip_set *set; /* attached to this ip_set */ member 45 struct list_head members; /* the set members */ 49 list_set_ktest(struct ip_set *set, const struct sk_buff *skb, in list_set_ktest() argument 53 struct list_set *map = set in list_set_ktest() 74 list_set_kadd(struct ip_set *set, const struct sk_buff *skb, const struct xt_action_param *par, struct ip_set_adt_opt *opt, const struct ip_set_ext *ext) list_set_kadd() argument 94 list_set_kdel(struct ip_set *set, const struct sk_buff *skb, const struct xt_action_param *par, struct ip_set_adt_opt *opt, const struct ip_set_ext *ext) list_set_kdel() argument 114 list_set_kadt(struct ip_set *set, const struct sk_buff *skb, const struct xt_action_param *par, enum ipset_adt adt, struct ip_set_adt_opt *opt) list_set_kadt() argument 146 struct ip_set *set = e->set; __list_set_del_rcu() local 153 list_set_del(struct ip_set *set, struct set_elem *e) list_set_del() argument 164 list_set_replace(struct ip_set *set, struct set_elem *e, struct set_elem *old) list_set_replace() argument 174 set_cleanup_entries(struct ip_set *set) set_cleanup_entries() argument 185 list_set_utest(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) list_set_utest() argument 217 list_set_init_extensions(struct ip_set *set, const struct ip_set_ext *ext, struct set_elem *e) list_set_init_extensions() argument 232 list_set_uadd(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) list_set_uadd() argument 314 list_set_udel(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) list_set_udel() argument 346 list_set_uadt(struct ip_set *set, struct nlattr *tb[], enum ipset_adt adt, u32 *lineno, u32 flags, bool retried) list_set_uadt() argument 412 list_set_flush(struct ip_set *set) list_set_flush() argument 424 list_set_destroy(struct ip_set *set) list_set_destroy() argument 456 list_set_head(struct ip_set *set, struct sk_buff *skb) list_set_head() argument 480 list_set_list(const struct ip_set *set, struct sk_buff *skb, struct netlink_callback *cb) list_set_list() argument 546 list_set_cancel_gc(struct ip_set *set) list_set_cancel_gc() argument 574 struct ip_set *set = map->set; list_set_gc() local 585 list_set_gc_init(struct ip_set *set, void (*gc)(struct timer_list *t)) list_set_gc_init() argument 596 init_list_set(struct net *net, struct ip_set *set, u32 size) init_list_set() argument 614 list_set_create(struct net *net, struct ip_set *set, struct nlattr *tb[], u32 flags) list_set_create() argument [all...] |
/kernel/linux/linux-5.10/arch/x86/crypto/ |
H A D | sha1_avx2_x86_64_asm.S | 59 * SHA-1 implementation with Intel(R) AVX2 instruction set extensions. 100 .set A, REG_A 101 .set B, REG_B 102 .set C, REG_C 103 .set D, REG_D 104 .set E, REG_E 105 .set TB, REG_TB 106 .set TA, REG_TA 108 .set RA, REG_RA 109 .set R [all...] |
/kernel/linux/linux-6.6/arch/x86/crypto/ |
H A D | sha1_avx2_x86_64_asm.S | 59 * SHA-1 implementation with Intel(R) AVX2 instruction set extensions. 100 .set A, REG_A 101 .set B, REG_B 102 .set C, REG_C 103 .set D, REG_D 104 .set E, REG_E 105 .set TB, REG_TB 106 .set TA, REG_TA 108 .set RA, REG_RA 109 .set R [all...] |
/test/testfwk/xdevice/plugins/devicetest/core/ |
H A D | report.py | 56 testsuites.set("name", test_name) 58 testsuites.set("name", ReportConstants.report_xml) 65 testsuites.set("tests", str(tests_total)) 66 testsuites.set("failures", str(tests_error)) 67 testsuites.set("disabled", '') 68 testsuites.set("errors", "") 69 testsuites.set("starttime", self.get_strftime(start_time)) 70 testsuites.set("endtime", self.get_now_strftime()) 71 testsuites.set("report_version", "1.0") 117 testcase.set("nam [all...] |
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/tests/kutf/ |
H A D | kutf_resultset.c | 39 struct kutf_result_set *set; in kutf_create_result_set() local 41 set = kmalloc(sizeof(*set), GFP_KERNEL); in kutf_create_result_set() 42 if (!set) { in kutf_create_result_set() 47 INIT_LIST_HEAD(&set->results); in kutf_create_result_set() 48 init_waitqueue_head(&set->waitq); in kutf_create_result_set() 49 set->flags = 0; in kutf_create_result_set() 51 return set; in kutf_create_result_set() 62 struct kutf_result_set *set = context->result_set; in kutf_add_result() local 66 BUG_ON(set in kutf_add_result() 89 kutf_destroy_result_set(struct kutf_result_set *set) kutf_destroy_result_set() argument 97 kutf_has_result(struct kutf_result_set *set) kutf_has_result() argument 112 kutf_remove_result(struct kutf_result_set *set) kutf_remove_result() argument 149 kutf_set_waiting_for_input(struct kutf_result_set *set) kutf_set_waiting_for_input() argument 158 kutf_clear_waiting_for_input(struct kutf_result_set *set) kutf_clear_waiting_for_input() argument [all...] |
/kernel/linux/linux-5.10/net/netfilter/ |
H A D | nft_dynset.c | 19 struct nft_set *set; member 30 static void *nft_dynset_new(struct nft_set *set, const struct nft_expr *expr, in nft_dynset_new() argument 38 if (!atomic_add_unless(&set->nelems, 1, set->size)) in nft_dynset_new() 41 timeout = priv->timeout ? : set->timeout; in nft_dynset_new() 42 elem = nft_set_elem_init(set, &priv->tmpl, in nft_dynset_new() 49 ext = nft_set_elem_ext(set, elem); in nft_dynset_new() 57 nft_set_elem_destroy(set, elem, false); in nft_dynset_new() 59 if (set->size) in nft_dynset_new() 60 atomic_dec(&set in nft_dynset_new() 68 struct nft_set *set = priv->set; nft_dynset_eval() local 115 struct nft_set *set; nft_dynset_init() local [all...] |
/kernel/linux/linux-6.6/net/netfilter/ |
H A D | nft_lookup.c | 19 struct nft_set *set; member 28 bool nft_set_do_lookup(const struct net *net, const struct nft_set *set, in nft_set_do_lookup() argument 31 if (set->ops == &nft_set_hash_fast_type.ops) in nft_set_do_lookup() 32 return nft_hash_lookup_fast(net, set, key, ext); in nft_set_do_lookup() 33 if (set->ops == &nft_set_hash_type.ops) in nft_set_do_lookup() 34 return nft_hash_lookup(net, set, key, ext); in nft_set_do_lookup() 36 if (set->ops == &nft_set_rhash_type.ops) in nft_set_do_lookup() 37 return nft_rhash_lookup(net, set, key, ext); in nft_set_do_lookup() 39 if (set->ops == &nft_set_bitmap_type.ops) in nft_set_do_lookup() 40 return nft_bitmap_lookup(net, set, ke in nft_set_do_lookup() 63 const struct nft_set *set = priv->set; nft_lookup_eval() local 103 struct nft_set *set; nft_lookup_init() local [all...] |
H A D | nft_dynset.c | 16 struct nft_set *set; member 47 static void *nft_dynset_new(struct nft_set *set, const struct nft_expr *expr, in nft_dynset_new() argument 55 if (!atomic_add_unless(&set->nelems, 1, set->size)) in nft_dynset_new() 58 timeout = priv->timeout ? : set->timeout; in nft_dynset_new() 59 elem = nft_set_elem_init(set, &priv->tmpl, in nft_dynset_new() 66 ext = nft_set_elem_ext(set, elem); in nft_dynset_new() 73 nft_set_elem_destroy(set, elem, false); in nft_dynset_new() 75 if (set->size) in nft_dynset_new() 76 atomic_dec(&set in nft_dynset_new() 84 struct nft_set *set = priv->set; nft_dynset_eval() local 125 nft_dynset_expr_alloc(const struct nft_ctx *ctx, const struct nft_set *set, const struct nlattr *attr, int pos) nft_dynset_expr_alloc() argument 167 struct nft_set *set; nft_dynset_init() local [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/ |
H A D | drm_crtc_helper.c | 252 * drm_crtc_helper_set_mode - internal helper to set a mode 259 * Try to set @mode on @crtc. Give @crtc and its associated connectors a chance 260 * to fixup or reject the mode prior to trying to set it. This is an internal 269 * True if the mode was set successfully, false otherwise. 381 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%s]\n", in drm_crtc_helper_set_mode() 387 /* Now enable the clocks, plane, pipe, and connectors that we set up. */ in drm_crtc_helper_set_mode() 479 * drm_crtc_helper_set_config - set a new config from userspace 480 * @set: mode set configuration 503 * performs a full mode set sequenc 516 drm_crtc_helper_set_config(struct drm_mode_set *set, struct drm_modeset_acquire_ctx *ctx) drm_crtc_helper_set_config() argument 1010 struct drm_mode_set set = { drm_helper_force_disable_all() local [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/ |
H A D | drm_crtc_helper.c | 264 * drm_crtc_helper_set_mode - internal helper to set a mode 271 * Try to set @mode on @crtc. Give @crtc and its associated connectors a chance 272 * to fixup or reject the mode prior to trying to set it. This is an internal 281 * True if the mode was set successfully, false otherwise. 393 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%s]\n", in drm_crtc_helper_set_mode() 399 /* Now enable the clocks, plane, pipe, and connectors that we set up. */ in drm_crtc_helper_set_mode() 517 * drm_crtc_helper_set_config - set a new config from userspace 518 * @set: mode set configuration 541 * performs a full mode set sequenc 554 drm_crtc_helper_set_config(struct drm_mode_set *set, struct drm_modeset_acquire_ctx *ctx) drm_crtc_helper_set_config() argument 1048 struct drm_mode_set set = { drm_helper_force_disable_all() local [all...] |
/kernel/linux/linux-5.10/arch/sh/boards/mach-se/7724/ |
H A D | irq.c | 44 struct fpga_irq set; in get_fpga_irq() local 48 set.sraddr = IRQ0_SR; in get_fpga_irq() 49 set.mraddr = IRQ0_MR; in get_fpga_irq() 50 set.mask = IRQ0_MASK; in get_fpga_irq() 51 set.base = IRQ0_BASE; in get_fpga_irq() 54 set.sraddr = IRQ1_SR; in get_fpga_irq() 55 set.mraddr = IRQ1_MR; in get_fpga_irq() 56 set.mask = IRQ1_MASK; in get_fpga_irq() 57 set.base = IRQ1_BASE; in get_fpga_irq() 60 set in get_fpga_irq() 73 struct fpga_irq set = get_fpga_irq(fpga2irq(irq)); disable_se7724_irq() local 81 struct fpga_irq set = get_fpga_irq(fpga2irq(irq)); enable_se7724_irq() local 95 struct fpga_irq set = get_fpga_irq(irq); se7724_irq_demux() local [all...] |
/kernel/linux/linux-6.6/arch/sh/boards/mach-se/7724/ |
H A D | irq.c | 44 struct fpga_irq set; in get_fpga_irq() local 48 set.sraddr = IRQ0_SR; in get_fpga_irq() 49 set.mraddr = IRQ0_MR; in get_fpga_irq() 50 set.mask = IRQ0_MASK; in get_fpga_irq() 51 set.base = IRQ0_BASE; in get_fpga_irq() 54 set.sraddr = IRQ1_SR; in get_fpga_irq() 55 set.mraddr = IRQ1_MR; in get_fpga_irq() 56 set.mask = IRQ1_MASK; in get_fpga_irq() 57 set.base = IRQ1_BASE; in get_fpga_irq() 60 set in get_fpga_irq() 73 struct fpga_irq set = get_fpga_irq(fpga2irq(irq)); disable_se7724_irq() local 81 struct fpga_irq set = get_fpga_irq(fpga2irq(irq)); enable_se7724_irq() local 95 struct fpga_irq set = get_fpga_irq(irq); se7724_irq_demux() local [all...] |