Searched refs:dev (Results 26 - 50 of 6298) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_kms.h8 #include <dev/drm2/drmP.h>
10 int radeon_driver_load_kms(struct drm_device *dev, unsigned long flags);
11 int radeon_driver_unload_kms(struct drm_device *dev);
13 int radeon_driver_firstopen_kms(struct drm_device *dev);
14 void radeon_driver_lastclose_kms(struct drm_device *dev);
15 int radeon_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv);
16 void radeon_driver_postclose_kms(struct drm_device *dev,
18 void radeon_driver_preclose_kms(struct drm_device *dev,
20 u32 radeon_get_vblank_counter_kms(struct drm_device *dev, int crtc);
21 int radeon_enable_vblank_kms(struct drm_device *dev, in
[all...]
H A Dradeon_irq_kms.h9 void radeon_driver_irq_preinstall_kms(struct drm_device *dev);
10 int radeon_driver_irq_postinstall_kms(struct drm_device *dev);
11 void radeon_driver_irq_uninstall_kms(struct drm_device *dev);
/freebsd-11-stable/sys/dev/mthca/
H A Dmthca_pd.c39 int mthca_pd_alloc(struct mthca_dev *dev, int privileged, struct mthca_pd *pd) argument
46 pd->pd_num = mthca_alloc(&dev->pd_table.alloc);
51 err = mthca_mr_alloc_notrans(dev, pd->pd_num,
56 mthca_free(&dev->pd_table.alloc, pd->pd_num);
62 void mthca_pd_free(struct mthca_dev *dev, struct mthca_pd *pd) argument
65 mthca_free_mr(dev, &pd->ntmr);
66 mthca_free(&dev->pd_table.alloc, pd->pd_num);
69 int mthca_init_pd_table(struct mthca_dev *dev) argument
71 return mthca_alloc_init(&dev->pd_table.alloc,
72 dev
77 mthca_cleanup_pd_table(struct mthca_dev *dev) argument
[all...]
/freebsd-11-stable/sys/dev/etherswitch/arswitch/
H A Darswitch_reg.h31 extern void arswitch_writedbg(device_t dev, int phy, uint16_t dbg_addr,
33 extern void arswitch_writemmd(device_t dev, int phy, uint16_t dbg_addr,
36 extern int arswitch_readreg(device_t dev, int addr);
37 extern int arswitch_writereg(device_t dev, int addr, int value);
38 extern int arswitch_modifyreg(device_t dev, int addr, int mask, int set);
41 extern int arswitch_readreg_lsb(device_t dev, int addr);
42 extern int arswitch_readreg_msb(device_t dev, int addr);
44 extern int arswitch_writereg_lsb(device_t dev, int addr, int data);
45 extern int arswitch_writereg_msb(device_t dev, int addr, int data);
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Daccommon.h162 #include <contrib/dev/acpica/include/acconfig.h> /* Global configuration constants */
163 #include <contrib/dev/acpica/include/acmacros.h> /* C macros */
164 #include <contrib/dev/acpica/include/aclocal.h> /* Internal data types */
165 #include <contrib/dev/acpica/include/acobject.h> /* ACPI internal object */
166 #include <contrib/dev/acpica/include/acstruct.h> /* Common structures */
167 #include <contrib/dev/acpica/include/acglobal.h> /* All global variables */
168 #include <contrib/dev/acpica/include/achware.h> /* Hardware defines and interfaces */
169 #include <contrib/dev/acpica/include/acutils.h> /* Utility interfaces */
171 #include <contrib/dev/acpica/include/acclib.h> /* C library interfaces */
/freebsd-11-stable/usr.sbin/pc-sysinstall/backend-query/
H A Dtest-netup.sh38 rm ${TMPDIR}/.testftp >/dev/null 2>/dev/null
40 ping -c 2 www.pcbsd.org >/dev/null 2>/dev/null
47 ping6 -c 2 www.pcbsd.org >/dev/null 2>/dev/null
54 ping -c 2 www.freebsd.org >/dev/null 2>/dev/null
61 ping6 -c 2 www.freebsd.org >/dev/null 2>/dev/nul
[all...]
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Ddevice.h59 void (*dev_release)(struct device *dev);
60 char * (*devnode)(struct device *dev, umode_t *mode);
64 int (*suspend)(struct device *dev);
65 int (*suspend_late)(struct device *dev);
66 int (*resume)(struct device *dev);
67 int (*resume_early)(struct device *dev);
68 int (*freeze)(struct device *dev);
69 int (*freeze_late)(struct device *dev);
70 int (*thaw)(struct device *dev);
71 int (*thaw_early)(struct device *dev);
207 dev_get_drvdata(const struct device *dev) argument
214 dev_set_drvdata(struct device *dev, void *data) argument
221 get_device(struct device *dev) argument
231 dev_name(const struct device *dev) argument
241 put_device(struct device *dev) argument
278 device_initialize(struct device *dev) argument
311 device_add(struct device *dev) argument
326 device_create_release(struct device *dev) argument
336 struct device *dev = NULL; local
378 struct device *dev; local
388 device_is_registered(struct device *dev) argument
395 device_register(struct device *dev) argument
433 device_unregister(struct device *dev) argument
451 device_del(struct device *dev) argument
519 device_create_file(struct device *dev, const struct device_attribute *attr) argument
528 device_remove_file(struct device *dev, const struct device_attribute *attr) argument
553 dev_to_node(struct device *dev) argument
[all...]
/freebsd-11-stable/sys/dev/mlx4/mlx4_core/
H A Dmlx4_main.c52 #include <dev/mlx4/device.h>
53 #include <dev/mlx4/doorbell.h>
58 #include <dev/mlx4/stats.h>
181 static inline void mlx4_set_num_reserved_uars(struct mlx4_dev *dev, argument
188 dev->caps.reserved_uars =
190 mlx4_get_num_reserved_uar(dev),
192 (1 << (PAGE_SHIFT - dev->uar_page_shift)));
195 int mlx4_check_port_params(struct mlx4_dev *dev, argument
200 if (!(dev->caps.flags & MLX4_DEV_CAP_FLAG_DPDP)) {
201 for (i = 0; i < dev
219 mlx4_set_port_mask(struct mlx4_dev *dev) argument
231 mlx4_query_func(struct mlx4_dev *dev, struct mlx4_dev_cap *dev_cap) argument
250 mlx4_enable_cqe_eqe_stride(struct mlx4_dev *dev) argument
285 _mlx4_dev_port(struct mlx4_dev *dev, int port, struct mlx4_port_cap *port_cap) argument
312 mlx4_dev_port(struct mlx4_dev *dev, int port, struct mlx4_port_cap *port_cap) argument
325 mlx4_enable_ignore_fcs(struct mlx4_dev *dev) argument
345 mlx4_dev_cap(struct mlx4_dev *dev, struct mlx4_dev_cap *dev_cap) argument
626 mlx4_get_pcie_dev_link_caps(struct mlx4_dev *dev, enum pci_bus_speed *speed, enum pcie_link_width *width) argument
667 mlx4_check_pcie_caps(struct mlx4_dev *dev) argument
706 mlx4_how_many_lives_vf(struct mlx4_dev *dev) argument
725 mlx4_get_parav_qkey(struct mlx4_dev *dev, u32 qpn, u32 *qkey) argument
743 mlx4_sync_pkey_table(struct mlx4_dev *dev, int slave, int port, int i, int val) argument
754 mlx4_put_slave_node_guid(struct mlx4_dev *dev, int slave, __be64 guid) argument
765 mlx4_get_slave_node_guid(struct mlx4_dev *dev, int slave) argument
776 mlx4_is_slave_active(struct mlx4_dev *dev, int slave) argument
789 slave_adjust_steering_mode(struct mlx4_dev *dev, struct mlx4_dev_cap *dev_cap, struct mlx4_init_hca_param *hca_param) argument
806 mlx4_slave_cap(struct mlx4_dev *dev) argument
1016 mlx4_request_modules(struct mlx4_dev *dev) argument
1041 mlx4_change_port_types(struct mlx4_dev *dev, enum mlx4_port_type *port_types) argument
1079 show_port_type(struct device *dev, struct device_attribute *attr, char *buf) argument
1166 set_port_type(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
1231 show_port_ib_mtu(struct device *dev, struct device_attribute *attr, char *buf) argument
1244 set_port_ib_mtu(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
1291 mlx4_mf_bond(struct mlx4_dev *dev) argument
1347 mlx4_mf_unbond(struct mlx4_dev *dev) argument
1367 mlx4_bond(struct mlx4_dev *dev) argument
1395 mlx4_unbond(struct mlx4_dev *dev) argument
1425 mlx4_port_map_set(struct mlx4_dev *dev, struct mlx4_port_map *v2p) argument
1469 mlx4_load_fw(struct mlx4_dev *dev) argument
1503 mlx4_init_cmpt_table(struct mlx4_dev *dev, u64 cmpt_base, int cmpt_entry_sz) argument
1562 mlx4_init_icm(struct mlx4_dev *dev, struct mlx4_dev_cap *dev_cap, struct mlx4_init_hca_param *init_hca, u64 icm_size) argument
1766 mlx4_free_icms(struct mlx4_dev *dev) argument
1789 mlx4_slave_exit(struct mlx4_dev *dev) argument
1800 map_bf_area(struct mlx4_dev *dev) argument
1821 unmap_bf_area(struct mlx4_dev *dev) argument
1827 mlx4_read_clock(struct mlx4_dev *dev) argument
1852 map_internal_clock(struct mlx4_dev *dev) argument
1867 mlx4_get_internal_clock_params(struct mlx4_dev *dev, struct mlx4_clock_params *params) argument
1886 unmap_internal_clock(struct mlx4_dev *dev) argument
1894 mlx4_close_hca(struct mlx4_dev *dev) argument
1907 mlx4_close_fw(struct mlx4_dev *dev) argument
1915 mlx4_comm_check_offline(struct mlx4_dev *dev) argument
1943 mlx4_reset_vf_support(struct mlx4_dev *dev) argument
1959 mlx4_init_slave(struct mlx4_dev *dev) argument
2029 mlx4_parav_master_pf_caps(struct mlx4_dev *dev) argument
2082 choose_steering_mode(struct mlx4_dev *dev, struct mlx4_dev_cap *dev_cap) argument
2135 choose_tunnel_offload_mode(struct mlx4_dev *dev, struct mlx4_dev_cap *dev_cap) argument
2148 mlx4_validate_optimized_steering(struct mlx4_dev *dev) argument
2177 mlx4_init_fw(struct mlx4_dev *dev) argument
2208 mlx4_init_hca(struct mlx4_dev *dev) argument
2410 mlx4_init_counters_table(struct mlx4_dev *dev) argument
2428 mlx4_cleanup_counters_table(struct mlx4_dev *dev) argument
2439 mlx4_cleanup_default_counters(struct mlx4_dev *dev) argument
2449 mlx4_allocate_default_counters(struct mlx4_dev *dev) argument
2485 __mlx4_counter_alloc(struct mlx4_dev *dev, u32 *idx) argument
2501 mlx4_counter_alloc(struct mlx4_dev *dev, u32 *idx) argument
2519 __mlx4_clear_if_stat(struct mlx4_dev *dev, u8 counter_index) argument
2538 __mlx4_counter_free(struct mlx4_dev *dev, u32 idx) argument
2552 mlx4_counter_free(struct mlx4_dev *dev, u32 idx) argument
2567 mlx4_get_default_counter_index(struct mlx4_dev *dev, int port) argument
2575 mlx4_set_admin_guid(struct mlx4_dev *dev, __be64 guid, int entry, int port) argument
2583 mlx4_get_admin_guid(struct mlx4_dev *dev, int entry, int port) argument
2591 mlx4_set_random_admin_guid(struct mlx4_dev *dev, int entry, int port) argument
2606 mlx4_setup_hca(struct mlx4_dev *dev) argument
2808 mlx4_init_affinity_hint(struct mlx4_dev *dev, int port, int eqn) argument
2835 mlx4_enable_msi_x(struct mlx4_dev *dev) argument
2929 mlx4_init_port_info(struct mlx4_dev *dev, int port) argument
2997 mlx4_init_steering(struct mlx4_dev *dev) argument
3015 mlx4_clear_steering(struct mlx4_dev *dev) argument
3056 mlx4_get_ownership(struct mlx4_dev *dev) argument
3077 mlx4_free_ownership(struct mlx4_dev *dev) argument
3099 mlx4_enable_sriov(struct mlx4_dev *dev, struct pci_dev *pdev, u8 total_vfs, int existing_vfs, int reset_flow) argument
3158 mlx4_check_dev_cap(struct mlx4_dev *dev, struct mlx4_dev_cap *dev_cap, int *nvfs) argument
3172 mlx4_pci_enable_device(struct mlx4_dev *dev) argument
3188 mlx4_pci_disable_device(struct mlx4_dev *dev) argument
3204 struct mlx4_dev *dev; local
3754 struct mlx4_dev *dev; local
3809 mlx4_clean_dev(struct mlx4_dev *dev) argument
3823 struct mlx4_dev *dev = persist->dev; local
3904 struct mlx4_dev *dev = persist->dev; local
3948 restore_current_port_types(struct mlx4_dev *dev, enum mlx4_port_type *types, enum mlx4_port_type *poss_types) argument
3971 struct mlx4_dev *dev = persist->dev; local
4082 struct mlx4_dev *dev = persist->dev; local
4099 struct mlx4_dev *dev = persist->dev; local
[all...]
/freebsd-11-stable/contrib/wpa/src/wps/
H A Dwps_dev_attr.c16 int wps_build_manufacturer(struct wps_device_data *dev, struct wpabuf *msg) argument
21 len = dev->manufacturer ? os_strlen(dev->manufacturer) : 0;
35 wpabuf_put_data(msg, dev->manufacturer, len);
40 int wps_build_model_name(struct wps_device_data *dev, struct wpabuf *msg) argument
45 len = dev->model_name ? os_strlen(dev->model_name) : 0;
59 wpabuf_put_data(msg, dev->model_name, len);
64 int wps_build_model_number(struct wps_device_data *dev, struct wpabuf *msg) argument
69 len = dev
88 wps_build_serial_number(struct wps_device_data *dev, struct wpabuf *msg) argument
112 wps_build_primary_dev_type(struct wps_device_data *dev, struct wpabuf *msg) argument
122 wps_build_secondary_dev_type(struct wps_device_data *dev, struct wpabuf *msg) argument
138 wps_build_req_dev_type(struct wps_device_data *dev, struct wpabuf *msg, unsigned int num_req_dev_types, const u8 *req_dev_types) argument
158 wps_build_dev_name(struct wps_device_data *dev, struct wpabuf *msg) argument
182 wps_build_device_attrs(struct wps_device_data *dev, struct wpabuf *msg) argument
195 wps_build_os_version(struct wps_device_data *dev, struct wpabuf *msg) argument
205 wps_build_vendor_ext_m1(struct wps_device_data *dev, struct wpabuf *msg) argument
219 wps_build_rf_bands(struct wps_device_data *dev, struct wpabuf *msg, u8 rf_band) argument
226 wps_build_vendor_ext(struct wps_device_data *dev, struct wpabuf *msg) argument
245 wps_process_manufacturer(struct wps_device_data *dev, const u8 *str, size_t str_len) argument
264 wps_process_model_name(struct wps_device_data *dev, const u8 *str, size_t str_len) argument
283 wps_process_model_number(struct wps_device_data *dev, const u8 *str, size_t str_len) argument
302 wps_process_serial_number(struct wps_device_data *dev, const u8 *str, size_t str_len) argument
321 wps_process_dev_name(struct wps_device_data *dev, const u8 *str, size_t str_len) argument
340 wps_process_primary_dev_type(struct wps_device_data *dev, const u8 *dev_type) argument
361 wps_process_device_attrs(struct wps_device_data *dev, struct wps_parse_attr *attr) argument
379 wps_process_os_version(struct wps_device_data *dev, const u8 *ver) argument
393 wps_process_vendor_ext_m1(struct wps_device_data *dev, const u8 ext) argument
401 wps_process_rf_bands(struct wps_device_data *dev, const u8 *bands) argument
415 wps_device_data_free(struct wps_device_data *dev) argument
[all...]
H A Dwps_dev_attr.h14 int wps_build_manufacturer(struct wps_device_data *dev, struct wpabuf *msg);
15 int wps_build_model_name(struct wps_device_data *dev, struct wpabuf *msg);
16 int wps_build_model_number(struct wps_device_data *dev, struct wpabuf *msg);
17 int wps_build_serial_number(struct wps_device_data *dev, struct wpabuf *msg);
18 int wps_build_dev_name(struct wps_device_data *dev, struct wpabuf *msg);
19 int wps_build_device_attrs(struct wps_device_data *dev, struct wpabuf *msg);
20 int wps_build_os_version(struct wps_device_data *dev, struct wpabuf *msg);
21 int wps_build_vendor_ext_m1(struct wps_device_data *dev, struct wpabuf *msg);
22 int wps_build_rf_bands(struct wps_device_data *dev, struct wpabuf *msg,
24 int wps_build_primary_dev_type(struct wps_device_data *dev,
[all...]
/freebsd-11-stable/sys/arm/ti/twl/
H A Dtwl_clks.h33 int twl_clks_enable(device_t dev, const char *name);
34 int twl_clks_disable(device_t dev, const char *name);
35 int twl_clks_is_enabled(device_t dev, const char *name, int *enabled);
H A Dtwl_vreg.h33 int twl_vreg_get_voltage(device_t dev, const char *name, int *millivolts);
34 int twl_vreg_set_voltage(device_t dev, const char *name, int millivolts);
/freebsd-11-stable/sys/dev/bhnd/
H A Dbhndvar.h62 int bhnd_generic_attach(device_t dev);
63 int bhnd_generic_detach(device_t dev);
64 int bhnd_generic_shutdown(device_t dev);
65 int bhnd_generic_resume(device_t dev);
66 int bhnd_generic_suspend(device_t dev);
68 int bhnd_generic_get_probe_order(device_t dev,
71 int bhnd_generic_print_child(device_t dev,
73 void bhnd_generic_probe_nomatch(device_t dev,
76 device_t bhnd_generic_add_child(device_t dev, u_int order,
78 void bhnd_generic_child_deleted(device_t dev,
[all...]
/freebsd-11-stable/etc/rc.d/
H A Dmixer49 ( cd /dev ; ls mixer* 2>/dev/null )
57 local dev
59 dev="/dev/${1}"
60 if [ -r ${dev} ]; then
61 /usr/sbin/mixer -f ${dev} -s > /var/db/${1}-state 2>/dev/null
70 local file dev
72 dev
[all...]
/freebsd-11-stable/tools/tools/nanobsd/Files/root/
H A Dupdatep139 if mount | grep ${NANO_DRIVE}s1 > /dev/null ; then
46 dd if=/dev/zero of=/dev/${NANO_DRIVE}s1 bs=1m count=1 > /dev/null 2>&1
49 dd of=/dev/${NANO_DRIVE}s1 obs=64k
52 fsck_ffs -n /dev/${NANO_DRIVE}s1a
/freebsd-11-stable/tools/tools/nanobsd/gateworks/Files/root/
H A Dupdatep139 if mount | grep ${NANO_DRIVE}s1 > /dev/null ; then
46 dd if=/dev/zero of=/dev/${NANO_DRIVE}s1 bs=1m count=1 > /dev/null 2>&1
49 dd of=/dev/${NANO_DRIVE}s1 obs=64k
52 fsck_ffs -n /dev/${NANO_DRIVE}s1
/freebsd-11-stable/tools/tools/nanobsd/pcengines/Files/root/
H A Dupdatep139 if mount | grep ${NANO_DRIVE}s1 > /dev/null ; then
46 dd if=/dev/zero of=/dev/${NANO_DRIVE}s1 bs=1m count=1 > /dev/null 2>&1
49 dd of=/dev/${NANO_DRIVE}s1 obs=64k
52 fsck_ffs -n /dev/${NANO_DRIVE}s1a
/freebsd-11-stable/usr.bin/less/
H A Dlesspipe.sh8 exec unzip -c "$1" 2>/dev/null
11 exec uncompress -c "$1" 2>/dev/null
14 exec gzip -d -c "$1" 2>/dev/null
17 exec bzip2 -d -c "$1" 2>/dev/null
20 exec xz -d -c "$1" 2>/dev/null
23 exec lzma -d -c "$1" 2>/dev/null
/freebsd-11-stable/sys/dev/mlx5/mlx5_lib/
H A Dmlx5_gid.c32 * $FreeBSD: stable/11/sys/dev/mlx5/mlx5_lib/mlx5_gid.c 341572 2018-12-05 14:11:20Z slavash $
36 #include <dev/mlx5/driver.h>
37 #include <dev/mlx5/mlx5_core/mlx5_core.h>
38 #include <dev/mlx5/mlx5_lib/mlx5.h>
40 void mlx5_init_reserved_gids(struct mlx5_core_dev *dev) argument
42 unsigned int tblsz = MLX5_CAP_ROCE(dev, roce_address_table_size);
44 ida_init(&dev->roce.reserved_gids.ida);
45 dev->roce.reserved_gids.start = tblsz;
46 dev->roce.reserved_gids.count = 0;
49 void mlx5_cleanup_reserved_gids(struct mlx5_core_dev *dev) argument
57 mlx5_core_reserve_gids(struct mlx5_core_dev *dev, unsigned int count) argument
81 mlx5_core_unreserve_gids(struct mlx5_core_dev *dev, unsigned int count) argument
94 mlx5_core_reserved_gid_alloc(struct mlx5_core_dev *dev, int *gid_index) argument
111 mlx5_core_reserved_gid_free(struct mlx5_core_dev *dev, int gid_index) argument
117 mlx5_core_reserved_gids_count(struct mlx5_core_dev *dev) argument
123 mlx5_core_roce_gid_set(struct mlx5_core_dev *dev, unsigned int index, u8 roce_version, u8 roce_l3_type, const u8 *gid, const u8 *mac, bool vlan, u16 vlan_id) argument
[all...]
/freebsd-11-stable/sys/dev/drm/
H A Di915_drv.c35 #include "dev/drm/drmP.h"
36 #include "dev/drm/drm.h"
37 #include "dev/drm/drm_mm.h"
38 #include "dev/drm/i915_drm.h"
39 #include "dev/drm/i915_drv.h"
40 #include "dev/drm/drm_pciids.h"
49 struct drm_device *dev = device_get_softc(kdev); local
51 if (!dev || !dev->dev_private) {
58 i915_save_state(dev);
66 struct drm_device *dev = device_get_softc(kdev); local
76 i915_configure(struct drm_device *dev) argument
115 struct drm_device *dev = device_get_softc(kdev); local
128 struct drm_device *dev = device_get_softc(kdev); local
[all...]
H A Dvia_map.c28 #include "dev/drm/drmP.h"
29 #include "dev/drm/via_drm.h"
30 #include "dev/drm/via_drv.h"
32 static int via_do_init_map(struct drm_device * dev, drm_via_init_t * init) argument
34 drm_via_private_t *dev_priv = dev->dev_private;
38 dev_priv->sarea = drm_getsarea(dev);
41 dev->dev_private = (void *)dev_priv;
42 via_do_cleanup_map(dev);
46 dev_priv->fb = drm_core_findmap(dev, init->fb_offset);
49 dev
75 via_do_cleanup_map(struct drm_device * dev) argument
82 via_map_init(struct drm_device *dev, void *data, struct drm_file *file_priv) argument
98 via_driver_load(struct drm_device *dev, unsigned long chipset) argument
127 via_driver_unload(struct drm_device *dev) argument
[all...]
H A Dmga_drv.c37 #include "dev/drm/drmP.h"
38 #include "dev/drm/drm.h"
39 #include "dev/drm/mga_drm.h"
40 #include "dev/drm/mga_drv.h"
41 #include "dev/drm/drm_pciids.h"
55 * \param dev The device to be tested.
65 static int mga_driver_device_is_agp(struct drm_device * dev) argument
77 bus = device_get_parent(device_get_parent(dev->device));
78 if (pci_get_device(dev->device) == 0x0525 &&
86 static void mga_configure(struct drm_device *dev) argument
127 struct drm_device *dev = device_get_softc(kdev); local
140 struct drm_device *dev = device_get_softc(kdev); local
[all...]
H A Dsis_drv.c32 #include "dev/drm/drmP.h"
33 #include "dev/drm/sis_drm.h"
34 #include "dev/drm/sis_drv.h"
35 #include "dev/drm/drm_pciids.h"
42 static void sis_configure(struct drm_device *dev) argument
44 dev->driver->driver_features =
47 dev->driver->buf_priv_size = 1; /* No dev_priv */
48 dev->driver->context_ctor = sis_init_context;
49 dev->driver->context_dtor = sis_final_context;
51 dev
71 struct drm_device *dev = device_get_softc(kdev); local
84 struct drm_device *dev = device_get_softc(kdev); local
[all...]
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_pci.c42 #include <dev/drm2/drmP.h>
68 drm_dma_handle_t *drm_pci_alloc(struct drm_device * dev, size_t size, argument
86 mtx_assert(&dev->dma_lock, MA_NOTOWNED);
87 if (mtx_owned(&dev->dma_lock))
91 bus_get_dma_tag(dev->dev), /* parent */
130 void __drm_pci_free(struct drm_device * dev, drm_dma_handle_t * dmah) argument
143 void drm_pci_free(struct drm_device * dev, drm_dma_handle_t * dmah) argument
145 __drm_pci_free(dev, dmah);
151 static int drm_get_pci_domain(struct drm_device *dev) argument
156 drm_pci_get_irq(struct drm_device *dev) argument
174 drm_pci_free_irq(struct drm_device *dev) argument
186 drm_pci_get_name(struct drm_device *dev) argument
191 drm_pci_set_busid(struct drm_device *dev, struct drm_master *master) argument
220 drm_pci_set_unique(struct drm_device *dev, struct drm_master *master, struct drm_unique *u) argument
266 drm_pci_irq_by_busid(struct drm_device *dev, struct drm_irq_busid *p) argument
280 drm_pci_agp_init(struct drm_device *dev) argument
325 drm_get_pci_dev(device_t kdev, struct drm_device *dev, struct drm_driver *driver) argument
405 drm_pci_enable_msi(struct drm_device *dev) argument
428 drm_pci_disable_msi(struct drm_device *dev) argument
439 drm_pcie_get_speed_cap_mask(struct drm_device *dev, u32 *mask) argument
[all...]
/freebsd-11-stable/contrib/hyperv/tools/scripts/
H A Dhv_get_dns_info11 cat /etc/resolv.conf 2>/dev/null | awk '/^nameserver/ { print $2 }'

Completed in 170 milliseconds

1234567891011>>