Home
last modified time | relevance | path

Searched refs:legacy (Results 1 – 25 of 1146) sorted by relevance

12345678910>>...46

/OK3568_Linux_fs/kernel/drivers/mtd/nand/raw/
H A Dnand_legacy.c30 return readb(chip->legacy.IO_ADDR_R); in nand_read_byte()
42 return (uint8_t) cpu_to_le16(readw(chip->legacy.IO_ADDR_R)); in nand_read_byte16()
56 chip->legacy.cmd_ctrl(chip, NAND_CMD_NONE, in nand_select_chip()
76 chip->legacy.write_buf(chip, &byte, 1); in nand_write_byte()
106 chip->legacy.write_buf(chip, (uint8_t *)&word, 2); in nand_write_byte16()
119 iowrite8_rep(chip->legacy.IO_ADDR_W, buf, len); in nand_write_buf()
132 ioread8_rep(chip->legacy.IO_ADDR_R, buf, len); in nand_read_buf()
148 iowrite16_rep(chip->legacy.IO_ADDR_W, p, len >> 1); in nand_write_buf16()
163 ioread16_rep(chip->legacy.IO_ADDR_R, p, len >> 1); in nand_read_buf16()
180 if (chip->legacy.dev_ready(chip)) in panic_nand_wait_ready()
[all …]
H A Dpasemi_nand.c38 memcpy_fromio(buf, chip->legacy.IO_ADDR_R, 0x800); in pasemi_read_buf()
42 memcpy_fromio(buf, chip->legacy.IO_ADDR_R, len); in pasemi_read_buf()
49 memcpy_toio(chip->legacy.IO_ADDR_R, buf, 0x800); in pasemi_write_buf()
53 memcpy_toio(chip->legacy.IO_ADDR_R, buf, len); in pasemi_write_buf()
63 out_8(chip->legacy.IO_ADDR_W + (1 << CLE_PIN_CTL), cmd); in pasemi_hwcontrol()
65 out_8(chip->legacy.IO_ADDR_W + (1 << ALE_PIN_CTL), cmd); in pasemi_hwcontrol()
126 chip->legacy.IO_ADDR_R = of_iomap(np, 0); in pasemi_nand_probe()
127 chip->legacy.IO_ADDR_W = chip->legacy.IO_ADDR_R; in pasemi_nand_probe()
129 if (!chip->legacy.IO_ADDR_R) { in pasemi_nand_probe()
148 chip->legacy.cmd_ctrl = pasemi_hwcontrol; in pasemi_nand_probe()
[all …]
H A Dplat_nand.c76 data->chip.legacy.IO_ADDR_R = data->io_base; in plat_nand_probe()
77 data->chip.legacy.IO_ADDR_W = data->io_base; in plat_nand_probe()
78 data->chip.legacy.cmd_ctrl = pdata->ctrl.cmd_ctrl; in plat_nand_probe()
79 data->chip.legacy.dev_ready = pdata->ctrl.dev_ready; in plat_nand_probe()
80 data->chip.legacy.select_chip = pdata->ctrl.select_chip; in plat_nand_probe()
81 data->chip.legacy.write_buf = pdata->ctrl.write_buf; in plat_nand_probe()
82 data->chip.legacy.read_buf = pdata->ctrl.read_buf; in plat_nand_probe()
83 data->chip.legacy.chip_delay = pdata->chip.chip_delay; in plat_nand_probe()
H A Dorion_nand.c49 writeb(cmd, nc->legacy.IO_ADDR_W + offs); in orion_nand_cmd_ctrl()
54 void __iomem *io_base = chip->legacy.IO_ADDR_R; in orion_nand_read_buf()
157 nc->legacy.IO_ADDR_R = nc->legacy.IO_ADDR_W = io_base; in orion_nand_probe()
158 nc->legacy.cmd_ctrl = orion_nand_cmd_ctrl; in orion_nand_probe()
159 nc->legacy.read_buf = orion_nand_read_buf; in orion_nand_probe()
162 nc->legacy.chip_delay = board->chip_delay; in orion_nand_probe()
H A Dndfc.c140 chip->legacy.IO_ADDR_R = ndfc->ndfcbase + NDFC_DATA; in ndfc_chip_init()
141 chip->legacy.IO_ADDR_W = ndfc->ndfcbase + NDFC_DATA; in ndfc_chip_init()
142 chip->legacy.cmd_ctrl = ndfc_hwcontrol; in ndfc_chip_init()
143 chip->legacy.dev_ready = ndfc_ready; in ndfc_chip_init()
144 chip->legacy.select_chip = ndfc_select_chip; in ndfc_chip_init()
145 chip->legacy.chip_delay = 50; in ndfc_chip_init()
147 chip->legacy.read_buf = ndfc_read_buf; in ndfc_chip_init()
148 chip->legacy.write_buf = ndfc_write_buf; in ndfc_chip_init()
H A Dsocrates_nand.c168 nand_chip->legacy.cmd_ctrl = socrates_nand_cmd_ctrl; in socrates_nand_probe()
169 nand_chip->legacy.read_byte = socrates_nand_read_byte; in socrates_nand_probe()
170 nand_chip->legacy.write_buf = socrates_nand_write_buf; in socrates_nand_probe()
171 nand_chip->legacy.read_buf = socrates_nand_read_buf; in socrates_nand_probe()
172 nand_chip->legacy.dev_ready = socrates_nand_device_ready; in socrates_nand_probe()
175 nand_chip->legacy.chip_delay = 20; /* 20us command delay time */ in socrates_nand_probe()
H A Dxway_nand.c189 data->chip.legacy.cmd_ctrl = xway_cmd_ctrl; in xway_nand_probe()
190 data->chip.legacy.dev_ready = xway_dev_ready; in xway_nand_probe()
191 data->chip.legacy.select_chip = xway_select_chip; in xway_nand_probe()
192 data->chip.legacy.write_buf = xway_write_buf; in xway_nand_probe()
193 data->chip.legacy.read_buf = xway_read_buf; in xway_nand_probe()
194 data->chip.legacy.read_byte = xway_read_byte; in xway_nand_probe()
195 data->chip.legacy.chip_delay = 30; in xway_nand_probe()
H A Dsharpsl.c75 writeb(cmd, chip->legacy.IO_ADDR_W); in sharpsl_nand_hwcontrol()
176 this->legacy.IO_ADDR_R = sharpsl->io + FLASHIO; in sharpsl_nand_probe()
177 this->legacy.IO_ADDR_W = sharpsl->io + FLASHIO; in sharpsl_nand_probe()
179 this->legacy.cmd_ctrl = sharpsl_nand_hwcontrol; in sharpsl_nand_probe()
180 this->legacy.dev_ready = sharpsl_nand_dev_ready; in sharpsl_nand_probe()
182 this->legacy.chip_delay = 15; in sharpsl_nand_probe()
H A Dtmio_nand.c160 tmio_iowrite8(cmd, chip->legacy.IO_ADDR_W); in tmio_nand_hwcontrol()
426 nand_chip->legacy.IO_ADDR_R = tmio->fcr; in tmio_probe()
427 nand_chip->legacy.IO_ADDR_W = tmio->fcr; in tmio_probe()
430 nand_chip->legacy.cmd_ctrl = tmio_nand_hwcontrol; in tmio_probe()
431 nand_chip->legacy.dev_ready = tmio_nand_dev_ready; in tmio_probe()
432 nand_chip->legacy.read_byte = tmio_nand_read_byte; in tmio_probe()
433 nand_chip->legacy.write_buf = tmio_nand_write_buf; in tmio_probe()
434 nand_chip->legacy.read_buf = tmio_nand_read_buf; in tmio_probe()
440 nand_chip->legacy.chip_delay = 15; in tmio_probe()
450 nand_chip->legacy.waitfunc = tmio_nand_wait; in tmio_probe()
/OK3568_Linux_fs/kernel/drivers/net/ethernet/mellanox/mlx5/core/esw/acl/
H A Dingress_lgcy.c11 if (vport->ingress.legacy.drop_rule) { in esw_acl_ingress_lgcy_rules_destroy()
12 mlx5_del_flow_rules(vport->ingress.legacy.drop_rule); in esw_acl_ingress_lgcy_rules_destroy()
13 vport->ingress.legacy.drop_rule = NULL; in esw_acl_ingress_lgcy_rules_destroy()
49 vport->ingress.legacy.allow_untagged_spoofchk_grp = g; in esw_acl_ingress_lgcy_groups_create()
65 vport->ingress.legacy.allow_untagged_only_grp = g; in esw_acl_ingress_lgcy_groups_create()
82 vport->ingress.legacy.allow_spoofchk_only_grp = g; in esw_acl_ingress_lgcy_groups_create()
95 vport->ingress.legacy.drop_grp = g; in esw_acl_ingress_lgcy_groups_create()
100 if (!IS_ERR_OR_NULL(vport->ingress.legacy.allow_spoofchk_only_grp)) { in esw_acl_ingress_lgcy_groups_create()
101 mlx5_destroy_flow_group(vport->ingress.legacy.allow_spoofchk_only_grp); in esw_acl_ingress_lgcy_groups_create()
102 vport->ingress.legacy.allow_spoofchk_only_grp = NULL; in esw_acl_ingress_lgcy_groups_create()
[all …]
H A Degress_lgcy.c12 if (!IS_ERR_OR_NULL(vport->egress.legacy.drop_rule)) { in esw_acl_egress_lgcy_rules_destroy()
13 mlx5_del_flow_rules(vport->egress.legacy.drop_rule); in esw_acl_egress_lgcy_rules_destroy()
14 vport->egress.legacy.drop_rule = NULL; in esw_acl_egress_lgcy_rules_destroy()
47 vport->egress.legacy.drop_grp = drop_grp; in esw_acl_egress_lgcy_groups_create()
60 if (!IS_ERR_OR_NULL(vport->egress.legacy.drop_grp)) { in esw_acl_egress_lgcy_groups_destroy()
61 mlx5_destroy_flow_group(vport->egress.legacy.drop_grp); in esw_acl_egress_lgcy_groups_destroy()
62 vport->egress.legacy.drop_grp = NULL; in esw_acl_egress_lgcy_groups_destroy()
82 if (vport->egress.legacy.drop_counter) { in esw_acl_egress_lgcy_setup()
83 drop_counter = vport->egress.legacy.drop_counter; in esw_acl_egress_lgcy_setup()
92 vport->egress.legacy.drop_counter = drop_counter; in esw_acl_egress_lgcy_setup()
[all …]
/OK3568_Linux_fs/kernel/arch/x86/kernel/
H A Dplatform-quirks.c10 x86_platform.legacy.i8042 = X86_LEGACY_I8042_EXPECTED_PRESENT; in x86_early_init_platform_quirks()
11 x86_platform.legacy.rtc = 1; in x86_early_init_platform_quirks()
12 x86_platform.legacy.warm_reset = 1; in x86_early_init_platform_quirks()
13 x86_platform.legacy.reserve_bios_regions = 0; in x86_early_init_platform_quirks()
14 x86_platform.legacy.devices.pnpbios = 1; in x86_early_init_platform_quirks()
18 x86_platform.legacy.reserve_bios_regions = 1; in x86_early_init_platform_quirks()
21 x86_platform.legacy.devices.pnpbios = 0; in x86_early_init_platform_quirks()
22 x86_platform.legacy.rtc = 0; in x86_early_init_platform_quirks()
26 x86_platform.legacy.devices.pnpbios = 0; in x86_early_init_platform_quirks()
27 x86_platform.legacy.rtc = 0; in x86_early_init_platform_quirks()
[all …]
/OK3568_Linux_fs/kernel/fs/ceph/
H A Dutil.c32 struct ceph_file_layout_legacy *legacy) in ceph_file_layout_from_legacy() argument
34 fl->stripe_unit = le32_to_cpu(legacy->fl_stripe_unit); in ceph_file_layout_from_legacy()
35 fl->stripe_count = le32_to_cpu(legacy->fl_stripe_count); in ceph_file_layout_from_legacy()
36 fl->object_size = le32_to_cpu(legacy->fl_object_size); in ceph_file_layout_from_legacy()
37 fl->pool_id = le32_to_cpu(legacy->fl_pg_pool); in ceph_file_layout_from_legacy()
44 struct ceph_file_layout_legacy *legacy) in ceph_file_layout_to_legacy() argument
46 legacy->fl_stripe_unit = cpu_to_le32(fl->stripe_unit); in ceph_file_layout_to_legacy()
47 legacy->fl_stripe_count = cpu_to_le32(fl->stripe_count); in ceph_file_layout_to_legacy()
48 legacy->fl_object_size = cpu_to_le32(fl->object_size); in ceph_file_layout_to_legacy()
50 legacy->fl_pg_pool = cpu_to_le32(fl->pool_id); in ceph_file_layout_to_legacy()
[all …]
/OK3568_Linux_fs/buildroot/package/strongswan/
H A DConfig.in101 default y if BR2_PACKAGE_STRONGSWAN_EAP # legacy
105 default y if BR2_PACKAGE_STRONGSWAN_EAP # legacy
116 default y if BR2_PACKAGE_STRONGSWAN_EAP # legacy
120 default y if BR2_PACKAGE_STRONGSWAN_EAP # legacy
126 default y if BR2_PACKAGE_STRONGSWAN_EAP # legacy
132 default y if BR2_PACKAGE_STRONGSWAN_EAP # legacy
138 default y if BR2_PACKAGE_STRONGSWAN_EAP # legacy
144 default y if BR2_PACKAGE_STRONGSWAN_EAP # legacy
148 default y if BR2_PACKAGE_STRONGSWAN_EAP # legacy
152 default y if BR2_PACKAGE_STRONGSWAN_EAP # legacy
[all …]
/OK3568_Linux_fs/kernel/drivers/media/usb/dvb-usb/
H A Ddvb-usb-remote.c49 struct rc_map_table *keymap = d->props.rc.legacy.rc_map_table; in legacy_dvb_usb_getkeycode()
50 unsigned int keymap_size = d->props.rc.legacy.rc_map_size; in legacy_dvb_usb_getkeycode()
72 struct rc_map_table *keymap = d->props.rc.legacy.rc_map_table; in legacy_dvb_usb_setkeycode()
73 unsigned int keymap_size = d->props.rc.legacy.rc_map_size; in legacy_dvb_usb_setkeycode()
123 if (d->props.rc.legacy.rc_query(d,&event,&state)) { in legacy_dvb_usb_read_remote_control()
187 schedule_delayed_work(&d->rc_query_work,msecs_to_jiffies(d->props.rc.legacy.rc_interval)); in legacy_dvb_usb_read_remote_control()
211 deb_rc("key map size: %d\n", d->props.rc.legacy.rc_map_size); in legacy_dvb_usb_remote_init()
212 for (i = 0; i < d->props.rc.legacy.rc_map_size; i++) { in legacy_dvb_usb_remote_init()
214 d->props.rc.legacy.rc_map_table[i].keycode, i); in legacy_dvb_usb_remote_init()
215 set_bit(d->props.rc.legacy.rc_map_table[i].keycode, input_dev->keybit); in legacy_dvb_usb_remote_init()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-filter/ebtables/ebtables-2.0.11/
H A Debtables.common3 [ -x /usr/sbin/ebtables-legacy ] || exit 1
25 /usr/sbin/ebtables-legacy -t filter -L 2>&1 1>/dev/null | grep -q permission
31 /usr/sbin/ebtables-legacy -t $table -L &> /dev/null
45 … /usr/sbin/ebtables-legacy -t $table --atomic-file ${EBTABLES_DUMPFILE_STEM}.$table --atomic-commit
73 /usr/sbin/ebtables-legacy -t $table --init-table
101 /usr/sbin/ebtables-legacy -t $table --atomic-file ${EBTABLES_DUMPFILE_STEM}.$table --atomic-save
108 /usr/sbin/ebtables-legacy -t $table --atomic-file ${EBTABLES_DUMPFILE_STEM}.$table -Z
151 …COUNT=$(( $(/usr/sbin/ebtables-legacy -t $table -L | sed -e "/^Bridge chain/! d" -e "s/^.*entries:…
/OK3568_Linux_fs/external/xserver/debian/
H A Dxserver-xorg-legacy.config12 THIS_PACKAGE=xserver-xorg-legacy
70 db_set xserver-xorg-legacy/xwrapper/allowed_users \
75 db_input low xserver-xorg-legacy/xwrapper/allowed_users || test $? = 30
79 if db_get xserver-xorg-legacy/xwrapper/allowed_users; then
81 db_set xserver-xorg-legacy/xwrapper/actual_allowed_users \
/OK3568_Linux_fs/kernel/drivers/mtd/nand/raw/bcm47xxnflash/
H A Dops_bcm4706.c226 nand_chip->legacy.cmd_ctrl(nand_chip, command, NAND_CTRL_CLE); in bcm47xxnflash_ops_bcm4706_cmdfunc()
382 nand_chip->legacy.select_chip = bcm47xxnflash_ops_bcm4706_select_chip; in bcm47xxnflash_ops_bcm4706_init()
383 nand_chip->legacy.cmd_ctrl = bcm47xxnflash_ops_bcm4706_cmd_ctrl; in bcm47xxnflash_ops_bcm4706_init()
384 nand_chip->legacy.dev_ready = bcm47xxnflash_ops_bcm4706_dev_ready; in bcm47xxnflash_ops_bcm4706_init()
385 b47n->nand_chip.legacy.cmdfunc = bcm47xxnflash_ops_bcm4706_cmdfunc; in bcm47xxnflash_ops_bcm4706_init()
386 b47n->nand_chip.legacy.read_byte = bcm47xxnflash_ops_bcm4706_read_byte; in bcm47xxnflash_ops_bcm4706_init()
387 b47n->nand_chip.legacy.read_buf = bcm47xxnflash_ops_bcm4706_read_buf; in bcm47xxnflash_ops_bcm4706_init()
388 b47n->nand_chip.legacy.write_buf = bcm47xxnflash_ops_bcm4706_write_buf; in bcm47xxnflash_ops_bcm4706_init()
389 b47n->nand_chip.legacy.set_features = nand_get_set_features_notsupp; in bcm47xxnflash_ops_bcm4706_init()
390 b47n->nand_chip.legacy.get_features = nand_get_set_features_notsupp; in bcm47xxnflash_ops_bcm4706_init()
[all …]
/OK3568_Linux_fs/kernel/drivers/reset/
H A Dreset-intel-gw.c25 bool legacy; member
57 if (data->soc_data->legacy) in id_to_reg_and_bit_offsets()
62 if (data->soc_data->legacy && *rst_req == RCU_RST_REQ) in id_to_reg_and_bit_offsets()
147 if (data->soc_data->legacy) { in intel_reset_xlate()
216 if (data->soc_data->legacy) in intel_reset_probe()
227 .legacy = true,
232 .legacy = false,
/OK3568_Linux_fs/buildroot/package/ebtables/
H A Debtables.mk22 $(INSTALL) -m 0755 -D $(@D)/ebtables-save.sh $(TARGET_DIR)/usr/sbin/ebtables-legacy-save
28 $(RM) -f $(TARGET_DIR)/usr/sbin/ebtables-legacy-save
37 $(RM) -f $(TARGET_DIR)/usr/sbin/ebtables-legacy-restore
44 ln -sf /usr/sbin/ebtables-legacy $(TARGET_DIR)/sbin/ebtables
/OK3568_Linux_fs/external/xserver/debian/po/
H A Dkk.po18 #: ../xserver-xorg-legacy.templates:2001
24 #: ../xserver-xorg-legacy.templates:2001
30 #: ../xserver-xorg-legacy.templates:2001
36 #: ../xserver-xorg-legacy.templates:2002
42 #: ../xserver-xorg-legacy.templates:2002
H A Dbe.po20 #: ../xserver-xorg-legacy.templates:2001
26 #: ../xserver-xorg-legacy.templates:2001
32 #: ../xserver-xorg-legacy.templates:2001
38 #: ../xserver-xorg-legacy.templates:2002
44 #: ../xserver-xorg-legacy.templates:2002
H A Dgu.po21 #: ../xserver-xorg-legacy.templates:2001
27 #: ../xserver-xorg-legacy.templates:2001
33 #: ../xserver-xorg-legacy.templates:2001
39 #: ../xserver-xorg-legacy.templates:2002
45 #: ../xserver-xorg-legacy.templates:2002
H A Dtemplates.pot21 #: ../xserver-xorg-legacy.templates:2001
27 #: ../xserver-xorg-legacy.templates:2001
33 #: ../xserver-xorg-legacy.templates:2001
39 #: ../xserver-xorg-legacy.templates:2002
45 #: ../xserver-xorg-legacy.templates:2002
H A Dmr.po21 #: ../xserver-xorg-legacy.templates:2001
27 #: ../xserver-xorg-legacy.templates:2001
33 #: ../xserver-xorg-legacy.templates:2001
39 #: ../xserver-xorg-legacy.templates:2002
45 #: ../xserver-xorg-legacy.templates:2002

12345678910>>...46