| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /*
- * Copyright (c) 2006-2021, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Email: opensource_embedded@phytium.com.cn
- *
- * Change Logs:
- * Date Author Notes
- * 2022-10-26 huanghe first commit
- *
- */
- #include "rtconfig.h"
- #include <rtthread.h>
- #include "fcpu_info.h"
- #include "fparameters.h"
- u32 GetCpuMaskToAffval(u32 *cpu_mask, u32 *cluster_id, u32 *target_list)
- {
- if (*cpu_mask == 0)
- {
- return 0;
- }
- *target_list = 0;
- *cluster_id = 0;
- if (*cpu_mask & 0x3)
- {
- if ((*cpu_mask & 0x3) == 0x3)
- {
- *target_list = 3;
- }
- else if ((*cpu_mask & 0x1))
- {
- *target_list = 1;
- }
- else
- {
- *target_list = 2;
- }
- *cpu_mask &= ~0x3;
- }
- else if (*cpu_mask & 0xc)
- {
- *cluster_id = 0x100;
- if ((*cpu_mask & 0xc) == 0xc)
- {
- *target_list = 3;
- }
- else if ((*cpu_mask & 0x4))
- {
- *target_list = 1;
- }
- else
- {
- *target_list = 2;
- }
- *cpu_mask &= ~0xc;
- }
- else
- {
- *cpu_mask = 0;
- return 0;
- }
- return 1;
- }
|