Lines Matching refs:private
429 struct tonga_smu_private_data *private = (struct tonga_smu_private_data *)adev->smu.priv; in tonga_smu_request_load_fw() local
435 …tonga_send_msg_to_smc_with_parameter(adev, PPSMC_MSG_SMU_DRAM_ADDR_HI, private->smu_buffer_addr_hi… in tonga_smu_request_load_fw()
436 …tonga_send_msg_to_smc_with_parameter(adev, PPSMC_MSG_SMU_DRAM_ADDR_LO, private->smu_buffer_addr_lo… in tonga_smu_request_load_fw()
438 toc = (struct SMU_DRAMData_TOC *)private->header; in tonga_smu_request_load_fw()
499 tonga_send_msg_to_smc_with_parameter(adev, PPSMC_MSG_DRV_DRAM_ADDR_HI, private->header_addr_high); in tonga_smu_request_load_fw()
500 tonga_send_msg_to_smc_with_parameter(adev, PPSMC_MSG_DRV_DRAM_ADDR_LO, private->header_addr_low); in tonga_smu_request_load_fw()
741 struct tonga_smu_private_data *private; in tonga_smu_init() local
751 private = kzalloc(sizeof(struct tonga_smu_private_data), GFP_KERNEL); in tonga_smu_init()
752 if (NULL == private) in tonga_smu_init()
759 adev->smu.priv = private; in tonga_smu_init()
807 private->header_addr_low = lower_32_bits(mc_addr); in tonga_smu_init()
808 private->header_addr_high = upper_32_bits(mc_addr); in tonga_smu_init()
809 private->header = toc_buf_ptr; in tonga_smu_init()
838 private->smu_buffer_addr_low = lower_32_bits(mc_addr); in tonga_smu_init()
839 private->smu_buffer_addr_high = upper_32_bits(mc_addr); in tonga_smu_init()