<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html lang="en" style="--code-editor-font: var(--default-mono-font, "GitLab Mono"), JetBrains Mono, Menlo, DejaVu Sans Mono, Liberation Mono, Consolas, Ubuntu Mono, Courier New, andale mono, lucida console, monospace;">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<title>
GitLab
</title>

<style data-premailer="ignore" type="text/css">
a { color: #1068bf; }
</style>

<style>img {
max-width: 100%; height: auto;
}
body {
font-size: .875rem;
}
body {
-webkit-text-shadow: rgba(255,255,255,.01) 0 0 1px;
}
body {
font-family: "GitLab Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Noto Sans",Ubuntu,Cantarell,"Helvetica Neue",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; font-size: inherit;
}
</style>
</head>
<body style="font-size: inherit; -webkit-text-shadow: rgba(255,255,255,.01) 0 0 1px; font-family: "GitLab Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Noto Sans",Ubuntu,Cantarell,"Helvetica Neue",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";">
<div class="content">

<p class="details" style="font-style: italic; color: #626168;">
<a href="https://gitlab.rtems.org/Chloe">Yang Zhang</a> created a merge request: <a href="https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/1306">!1306</a>
</p>
<div class="branch">
Project:Branches: Chloe/rtems:fix-gic-ppi-irq-mapping to rtems/rtos/rtems:main
</div>
<div class="author">
Author: Yang Zhang
</div>
<div class="assignee">
Assignees: 
</div>
<div class="reviewer">
Reviewers: 
</div>
<div class="md gl-mt-5" style="position: relative; z-index: 1; color: #3a383f; word-wrap: break-word; margin-top: 1rem;">
<h2 id="user-content-summary" dir="auto" style="margin-top: 0; margin-bottom: 10px;" align="initial">Summary<a href="#summary" aria-label="Link to heading 'Summary'" data-heading-content="Summary" class="anchor" style="margin-top: 0;"></a>
</h2>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">The ARM GIC device tree binding defines three cells per interrupt entry:</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">cell[0]: interrupt type  (0 = SPI, 1 = PPI)</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">cell[1]: interrupt number  (relative to the type base)</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">cell[2]: trigger flags  (no effect on the INTID calculation)</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial"> </p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">The GIC hardware INTID layout is:</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">0-15:  SGI</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">16-31:  PPI</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">32+:    SPI</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">Therefore the correct absolute hardware INTID is:</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">SPI (type 0): irq_number + 32</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">PPI (type 1): irq_number + 16</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial"> </p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">The previous code used a hard-coded offset of 32 for all interrupts in</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">both imx_get_irq_of_node() and bsp_fdt_map_intr(), ignoring the</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">interrupt type entirely.</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial"> </p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">The ARM generic timer (used in arm_generic_timer_get_config()) is a PPI</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">interrupt. Since its correct offset is 16 rather than 32, the previous</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">code compensated with a manual "- 16" adjustment at the call site,</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">accompanied by a FIXME comment.</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial"> </p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">Fix this by reading cell[0] in both imx_get_irq_of_node() and</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">bsp_fdt_map_intr() and selecting the correct offset based on the</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">interrupt type, as specified by the ARM GIC device tree binding and</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">implemented by the Linux GIC driver. Remove the unnecessary</p>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">adjustment and FIXME comment.</p>
<h2 id="user-content-generative-ai" dir="auto" style="margin-top: 20px; margin-bottom: 10px;" align="initial">Generative AI<a href="#generative-ai" aria-label="Link to heading 'Generative AI'" data-heading-content="Generative AI" class="anchor" style="margin-top: 0;"></a>
</h2>

<p dir="auto" style="color: #3a383f; margin: 0;" align="initial">None</p>
</div>

</div>
<div class="footer" style="margin-top: 10px;">
<p style="font-size: small; color: #626168;">

<br>
<a href="https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/1306">View it on GitLab</a>.
<br>
You're receiving this email because of your account on <a target="_blank" rel="noopener noreferrer" href="https://gitlab.rtems.org">gitlab.rtems.org</a>. <a href="https://gitlab.rtems.org/-/sent_notifications/4-2tcvipqd5c48nq8jx1lvqxnhs/unsubscribe" target="_blank" rel="noopener noreferrer">Unsubscribe</a> from this thread · <a href="https://gitlab.rtems.org/-/profile/notifications" target="_blank" rel="noopener noreferrer" class="mng-notif-link">Manage all notifications</a> · <a href="https://gitlab.rtems.org/help" target="_blank" rel="noopener noreferrer" class="help-link">Help</a>
<span style="color: transparent; font-size: 0; display: none; overflow: hidden; opacity: 0; width: 0; height: 0; max-width: 0; max-height: 0;">
Notification message regarding https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/1306 at 1781675971
</span>
<script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","action":{"@type":"ViewAction","name":"View Merge request","url":"https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/1306"}}</script>


</p>
</div>
</body>
</html>