psci_setup //lib/psci/psci_setup.c - >plat_setup_psci_ops //設置平臺的psci操作 調用平臺的plat_setup_psci_ops函數去設置psci操作 eg:qemu平臺 - >*psci_ops = 208 static const plat_psci_ops_t plat_qemu_psci_pm_ops = { 209 .cpu_standby = qemu_cpu_standby, 210 .pwr_domain_on = qemu_pwr_domain_on, 211 .pwr_domain_off = qemu_pwr_domain_off, 212 .pwr_domain_suspend = qemu_pwr_domain_suspend, 213 .pwr_domain_on_finish = qemu_pwr_domain_on_finish," />

精品国产人成在线_亚洲高清无码在线观看_国产在线视频国产永久2021_国产AV综合第一页一个的一区免费影院黑人_最近中文字幕MV高清在线视频

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內不再提示

SMP多核啟動PSCI代碼示例

麥辣雞腿堡 ? 來源:TrustZone ? 作者:Hcoco ? 2023-12-05 17:45 ? 次閱讀

1、std_svc_setup (主要關注設置psci操作集)--有服務

std_svc_setup  //services/std_svc/std_svc_setup.c
- >psci_setup //lib/psci/psci_setup.c
 - >plat_setup_psci_ops   //設置平臺的psci操作    調用平臺的plat_setup_psci_ops函數去設置psci操作 eg:qemu平臺
  - >*psci_ops = &plat_qemu_psci_pm_ops;
   208 static const plat_psci_ops_t plat_qemu_psci_pm_ops = {
    209         .cpu_standby = qemu_cpu_standby,
    210         .pwr_domain_on = qemu_pwr_domain_on,
    211         .pwr_domain_off = qemu_pwr_domain_off, 
    212         .pwr_domain_suspend = qemu_pwr_domain_suspend,
    213         .pwr_domain_on_finish = qemu_pwr_domain_on_finish,
    214         .pwr_domain_suspend_finish = qemu_pwr_domain_suspend_finish,
    215         .system_off = qemu_system_off,
    216         .system_reset = qemu_system_reset, 
    217         .validate_power_state = qemu_validate_power_state,
    218         .validate_ns_entrypoint = qemu_validate_ns_entrypoint
    219 };

在遍歷每一個注冊的運行時服務的時候,會導致std_svc_setup調用,其中會做psci操作集的設置,操作集中我們可以看到對核電源的管理的接口如:核上電,下電,掛起等,我們主要關注上電 .pwr_domain_on = qemu_pwr_domain_on,這個接口當我們主處理器boot從處理器的時候會用到。

2、運行時服務觸發(fā)和處理--來請求

smc指令觸發(fā)進入el3異常向量表:

runtime_exceptions  //el3的異常向量表
- >sync_exception_aarch64
- >handle_sync_exception
- >smc_handler64
- >   |* Populate the parameters for the SMC handler.
          |* We already have x0-x4 in place. x5 will point to a cookie (not used
          |* now). x6 will point to the context structure (SP_EL3) and x7 will
          |* contain flags we need to pass to the handler Hence save x5-x7.
          |*
          |* Note: x4 only needs to be preserved for AArch32 callers but we do it
          |*       for AArch64 callers as well for convenience
       |*/
         stp     x4, x5, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X4]  //保存x4-x7到棧
         stp     x6, x7, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X6]

       /* Save rest of the gpregs and sp_el0*/
         save_x18_to_x29_sp_el0

       mov     x5, xzr  //x5清零
       mov     x6, sp //sp保存在x6

       /* Get the unique owning entity number */ //獲得唯一的入口編號
         ubfx    x16, x0, #FUNCID_OEN_SHIFT, #FUNCID_OEN_WIDTH
         ubfx    x15, x0, #FUNCID_TYPE_SHIFT, #FUNCID_TYPE_WIDTH
         orr     x16, x16, x15, lsl #FUNCID_OEN_WIDTH

         adr     x11, (__RT_SVC_DESCS_START__ + RT_SVC_DESC_HANDLE)

       /* Load descriptor index from array of indices */
         adr     x14, rt_svc_descs_indices  //獲得服務描述 標識數組
         ldrb    w15, [x14, x16] //根據唯一的入口編號 找到處理函數的 地址
       /*
       |* Restore the saved C runtime stack value which will become the new
       |* SP_EL0 i.e. EL3 runtime stack. It was saved in the 'cpu_context'
       |* structure prior to the last ERET from EL3.
       |*/
         ldr     x12, [x6, #CTX_EL3STATE_OFFSET + CTX_RUNTIME_SP]

       /*
       |* Any index greater than 127 is invalid. Check bit 7 for
       |* a valid index
       |*/
         tbnz    w15, 7, smc_unknown

       /* Switch to SP_EL0 */
         msr     spsel, #0  

          /*
          |* Get the descriptor using the index
          |* x11 = (base + off), x15 = index
          |*
          |* handler = (base + off) + (index < < log2(size))
       |*/
       lsl     w10, w15, #RT_SVC_SIZE_LOG2
         ldr     x15, [x11, w10, uxtw]

       /*
       |* Save the SPSR_EL3, ELR_EL3, & SCR_EL3 in case there is a world
       |* switch during SMC handling.
       |* TODO: Revisit if all system registers can be saved later.
       |*/
   mrs     x16, spsr_el3 //spsr_el3保存在x16
    mrs     x17, elr_el3 //elr_el3保存在x17
   mrs     x18, scr_el3  //scr_el3保存在x18
         stp     x16, x17, [x6, #CTX_EL3STATE_OFFSET + CTX_SPSR_EL3]  /  x16, x17/保存在棧
       str     x18, [x6, #CTX_EL3STATE_OFFSET + CTX_SCR_EL3] //x18保存到棧

       /* Copy SCR_EL3.NS bit to the flag to indicate caller's security */
         bfi     x7, x18, #0, #1

       mov     sp, x12 

       /*
       |* Call the Secure Monitor Call handler and then drop directly into
       |* el3_exit() which will program any remaining architectural state
       |* prior to issuing the ERET to the desired lower EL.
       |*/
#if DEBUG
         cbz     x15, rt_svc_fw_critical_error
#endif
         blr     x15  //跳轉到處理函數

         b       el3_exit  //從el3退出  會eret 回到el1 (后面會講到)

3、找到對應handler--請求匹配處理函數

上面其實主要的是找到服務例程,然后跳轉執(zhí)行 下面是跳轉的處理函數:

std_svc_smc_handler  //services/std_svc/std_svc_setup.c
- >ret = psci_smc_handler(smc_fid, x1, x2, x3, x4,
                  |   cookie, handle, flags)
                  ...
 480         } else {
481                 /* 64-bit PSCI function */
  482 
  483                 switch (smc_fid) {
  484                 case PSCI_CPU_SUSPEND_AARCH64:
  485                         ret = (u_register_t)
  486                                 psci_cpu_suspend((unsigned int)x1, x2, x3);
  487                         break;
  488 
  489                 case PSCI_CPU_ON_AARCH64:
  490                         ret = (u_register_t)psci_cpu_on(x1, x2, x3);
  491                         break;
  492 
...
}
聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發(fā)燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報投訴
  • cpu
    cpu
    +關注

    關注

    68

    文章

    10829

    瀏覽量

    211185
  • 服務器
    +關注

    關注

    12

    文章

    9029

    瀏覽量

    85207
  • SMP
    SMP
    +關注

    關注

    0

    文章

    72

    瀏覽量

    19635
  • 函數
    +關注

    關注

    3

    文章

    4308

    瀏覽量

    62444
收藏 人收藏

    評論

    相關推薦

    AliOS Things SMP系統(tǒng)及其在esp32上實現示例

    對應CPU的SMP功能:2.1 核啟動加載目前的啟動順序是,系統(tǒng)默認開始啟動0核,在0核的主任務入口內啟動其他核的加載,使其都進入任務調度,
    發(fā)表于 05-15 12:45

    ARM電源管理中的PSCI是什么意思呢

    ;PSCI_STAT_RESIDENCY:此API返回自冷啟動后平臺處于某個電源狀態(tài)的時間;PSCI_STAT_COUNT:此API返回自冷啟動后平臺使用某個電源狀態(tài)的次數;這些API
    發(fā)表于 04-02 09:45

    記錄學習ARM Linux的多核啟動過程

    1.概述本文主要是記錄學習Linux的多核啟動的過程,對學習過程進行總結,以便進行后續(xù)回顧。平臺:ARM Vexpress內核版本:linux-4.92.smp_operations初始化系統(tǒng)
    發(fā)表于 05-25 10:43

    ARM64 SMP多核啟動相關資料推薦(下)

    2、psci方式多核啟動描述上面說了pin-table的多核啟動方式,看似很繁瑣,實際上并不復雜,無外乎主處理器喚醒從處理器到指定地址上去執(zhí)
    發(fā)表于 06-06 17:11

    介紹在ARM64架構下啟動多核的兩種方式

    psci 兩種方式,下面針對這兩種啟動流程進行分析。代碼版本boot-wrapper-aarch64 version
    發(fā)表于 06-13 18:23

    ARM64 SMP多核啟動(上)—spin-table

    一般嵌入式系統(tǒng)使用的都是對稱多處理器(Symmetric Multi-Processor, SMP)系統(tǒng),包含了多個cpu, 這幾個cpu都是相同的處理器,如4核Contex-A53。
    發(fā)表于 06-09 14:28 ?966次閱讀
    ARM64 <b class='flag-5'>SMP</b><b class='flag-5'>多核</b><b class='flag-5'>啟動</b>(上)—spin-table

    ARM64 SMP多核啟動(下)—PSCI

    上面說了pin-table的多核啟動方式,看似很繁瑣,實際上并不復雜,無外乎主處理器喚醒從處理器到指定地址上去執(zhí)行指令
    發(fā)表于 06-09 14:31 ?682次閱讀
    ARM64 <b class='flag-5'>SMP</b><b class='flag-5'>多核</b><b class='flag-5'>啟動</b>(下)—<b class='flag-5'>PSCI</b>

    多核CPU的啟動方式

    工作中遇到的多核 ARM CPU 越來越多,總結分享一些多核啟動的知識,希望能幫助更多小伙伴。 在 ARM64 架構下如果想要啟動多核,有
    的頭像 發(fā)表于 06-22 10:04 ?2102次閱讀

    SMP是什么?多核芯片(SMP)的啟動方法

    SMP 英文為Symmetric Multi-Processing ,是對稱多處理結構的簡稱,是指在一個計算機上匯集了一組處理器(多CPU),各CPU之間共享內存子系統(tǒng)以及總線結構,一個服務器系統(tǒng)可以同時運行多個處理器,并共享內存和其他的主機資源。
    的頭像 發(fā)表于 07-26 09:26 ?1.8w次閱讀
    <b class='flag-5'>SMP</b>是什么?<b class='flag-5'>多核</b>芯片(<b class='flag-5'>SMP</b>)的<b class='flag-5'>啟動</b>方法

    SMP是什么 啟動方式介紹

    ,一個服務器系統(tǒng)可以同時運行多個處理器,并共享內存和其他的主機資源。 CMP 英文為Chip multiprocessors,指的是單芯片多處理器,也指多核心。其思想是將大規(guī)模并行處理器中的SMP集成到同一芯片內,各個處理器并行執(zhí)行不同的進程。 (1)CPU數:獨立的中央
    的頭像 發(fā)表于 12-05 15:23 ?1752次閱讀

    SMP多核啟動cpu操作函數

    其中spin-table啟動方式的回調如下: const struct cpu_operations smp_spin_table_ops = {.name= "spin-table
    的頭像 發(fā)表于 12-05 16:04 ?721次閱讀
    <b class='flag-5'>SMP</b><b class='flag-5'>多核</b><b class='flag-5'>啟動</b>cpu操作函數

    psci接口規(guī)范介紹

    hotplug (3)secondary cpu啟動 (4)系統(tǒng)的shutdown和reset psci接口規(guī)定了命令對應的function_id、接口的輸入參數
    的頭像 發(fā)表于 12-05 16:53 ?877次閱讀

    內核中的psci驅動是什么

    內核中的psci架構 內核psci軟件架構包含psci驅動和每個cpu的cpu_ops回調函數實現兩部分。 其中psci驅動實現了驅動初始化和psc
    的頭像 發(fā)表于 12-05 16:58 ?667次閱讀
    內核中的<b class='flag-5'>psci</b>驅動是什么

    SMP多核secondary cpu啟動流程

    secondary cpu啟動 由于psci方式啟動secondary cpu的流程,除了其所執(zhí)行的cpu_ops不同之外,其它流程與spin-table方式是相同的,因此我們這里只給出執(zhí)行流程圖
    的頭像 發(fā)表于 12-05 17:41 ?789次閱讀
    <b class='flag-5'>SMP</b><b class='flag-5'>多核</b>secondary cpu<b class='flag-5'>啟動</b>流程

    PSCI處理函數代碼分析

    處理函數根據funid來決定服務,可以看到PSCI_CPU_ON_AARCH64為0xc4000003,這正是設備樹中填寫的cpu_on屬性的id,會委托psci_cpu_on來執(zhí)行核上電任務。下面
    的頭像 發(fā)表于 12-05 18:08 ?880次閱讀