bdw.c (f71f59dd450813684d838e0c1d6602186b7d2d8f) | bdw.c (97e22cbd0dc318f1cedb3546d2047403506bdc2d) |
---|---|
1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) 2// 3// This file is provided under a dual BSD/GPLv2 license. When using or 4// redistributing this file, you may do so under either license. 5// 6// Copyright(c) 2018 Intel Corporation. All rights reserved. 7// 8// Author: Liam Girdwood <liam.r.girdwood@linux.intel.com> --- 612 unchanged lines hidden (view full) --- 621 .mailbox_write = sof_mailbox_write, 622 623 /* ipc */ 624 .send_msg = bdw_send_msg, 625 .fw_ready = sof_fw_ready, 626 .get_mailbox_offset = bdw_get_mailbox_offset, 627 .get_window_offset = bdw_get_window_offset, 628 | 1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) 2// 3// This file is provided under a dual BSD/GPLv2 license. When using or 4// redistributing this file, you may do so under either license. 5// 6// Copyright(c) 2018 Intel Corporation. All rights reserved. 7// 8// Author: Liam Girdwood <liam.r.girdwood@linux.intel.com> --- 612 unchanged lines hidden (view full) --- 621 .mailbox_write = sof_mailbox_write, 622 623 /* ipc */ 624 .send_msg = bdw_send_msg, 625 .fw_ready = sof_fw_ready, 626 .get_mailbox_offset = bdw_get_mailbox_offset, 627 .get_window_offset = bdw_get_window_offset, 628 |
629 .ipc_msg_data = intel_ipc_msg_data, 630 .ipc_pcm_params = intel_ipc_pcm_params, | 629 .ipc_msg_data = sof_ipc_msg_data, 630 .ipc_pcm_params = sof_ipc_pcm_params, |
631 632 /* machine driver */ 633 .machine_select = bdw_machine_select, 634 .machine_register = sof_machine_register, 635 .machine_unregister = sof_machine_unregister, 636 .set_mach_params = bdw_set_mach_params, 637 638 /* debug */ 639 .debug_map = bdw_debugfs, 640 .debug_map_count = ARRAY_SIZE(bdw_debugfs), 641 .dbg_dump = bdw_dump, 642 .debugfs_add_region_item = snd_sof_debugfs_add_region_item_iomem, 643 644 /* stream callbacks */ | 631 632 /* machine driver */ 633 .machine_select = bdw_machine_select, 634 .machine_register = sof_machine_register, 635 .machine_unregister = sof_machine_unregister, 636 .set_mach_params = bdw_set_mach_params, 637 638 /* debug */ 639 .debug_map = bdw_debugfs, 640 .debug_map_count = ARRAY_SIZE(bdw_debugfs), 641 .dbg_dump = bdw_dump, 642 .debugfs_add_region_item = snd_sof_debugfs_add_region_item_iomem, 643 644 /* stream callbacks */ |
645 .pcm_open = intel_pcm_open, 646 .pcm_close = intel_pcm_close, | 645 .pcm_open = sof_stream_pcm_open, 646 .pcm_close = sof_stream_pcm_close, |
647 648 /* Module loading */ 649 .load_module = snd_sof_parse_module_memcpy, 650 651 /*Firmware loading */ 652 .load_firmware = snd_sof_load_firmware_memcpy, 653 654 /* DAI drivers */ --- 78 unchanged lines hidden --- | 647 648 /* Module loading */ 649 .load_module = snd_sof_parse_module_memcpy, 650 651 /*Firmware loading */ 652 .load_firmware = snd_sof_load_firmware_memcpy, 653 654 /* DAI drivers */ --- 78 unchanged lines hidden --- |