Il giorno giovedì 23 febbraio 2017 13:15:30 UTC+1, [email protected] ha
scritto:
> Il giorno mercoledì 22 febbraio 2017 14:48:09 UTC+1, Errico Guidieri ha
> scritto:
> > Dear guys,
> >
> >
> >
> >
> >
> >
> > I need to route a specific interrupt to my non-root cell (based
> > on jetson-demo.cell) on a ARM64 device (TegraTX1), and I have the
> > following questions.
> >
> >
> >
> >
> >
> > 1. I've seen in gic-demo that interrupt 27, that seems to be
> > tied to ARMv8 CPU internal Timer, even thought this is not
> > reporterd in TegraX1 RFM AFAICS, is available to the non-root cell
> > even without providing any specific IRQ configuration in the
> > non-root cell configuration (jetson-demo.c cell). However, if I
> > try to enable a different IRQ, the system hangs (I would have
> > expected an exception TBH). Is there any reason why the timer
> > interrupt behaves differently than the others ?
> >
> >
> >
> >
> >
> > 2. How do I configure the non-root cell to route a specific IRQ
> > to my cell I guess that I've to use the jailhouse_irqchip
> > structure and the .irqchips field, providing the right address and
> > bitmask. However, I can't figure out these values.
> >
> > I'm confused since I noted that in the FreeRTOS cell the GIC
> > address differs between the root cell and the non-root cell, and I
> > can't figure out the reason.
> >
> > Even the bitmask value is not clear since the bit set by the
> > FreeRTOS cell is IRQNO - 32: is it this a constant requiremet for
> > GIC? In other words in any implementation of ARM that use GIC am I
> > supposed to subtract 32 from the number I find in the Hardware
> > Reference Manual?
> >
> >
> >
> >
> >
> >
> >
> > 3. I also noted that the FreeRTOS porting has re-implemented
> > the inmate library from scratch and it does not link against the
> > usual Jailhouse library. Since their implementation provide
> > basically the same services with a few small additions (e.g.,
> > priorities handling for IRQs), I wonder the reason why they have
> > chosen to use a different implementation rather than merging these
> > additions to the mainline project.
> >
> >
> >
> >
> >
> > 4. This question is more a curiosity. In header.S the irq
> > vector entries do not save and restore the scratch/volatile
> > registers. IMHO this seems to not match the ARMv8 ABI and could
> > even bring to abnormal behavior in some circumstances. Is it
> > correct or am I wrong ?
> >
> > original ARM porting (32 bit) used GCC
> > __attribute__((interrupt("IRQ")))
> > for vector_irq function, but this strategy is no more available on
> > ARM64 (I don't know why this features has not been added for ARMv8
> > version of the GCC too).
> >
> >
> >
> >
> >
> >
> >
> > Many thanks and best regards,
> >
> >
> >
> >
> >
> > Errico Guidieri
> >
> >
> >
> > --
> >
> > Errico Gudieri
> > Senior Embedded Engineer
> > Phone: +39.050.99.11.224 (122)
> > E-mail: [email protected]
> >
> > EVIDENCE srl
> > Via Carducci 56 - Loc. Ghezzano - 56010 - S. Giuliano Terme - Pisa - Italy
> > Phone: +39.050.99.11.122 - 224
> > Fax: +39.050.99.10.812 - 855
>
> Thank You Andrea,
>
> with yours directions I understood better the jailhouse configuration and I
> could make some step forward, but still I cannot make the interrupt in my
> cell.
>
> The interrupt that I need is GPIO-1. For what I understood by TegraX1 the
> documentation:
> 1) its global id is 32
> 2) it belongs to Secondary Interrupt Controller (SEC_ICTLR)
>
> So these basically are the changes that I have dono on jetson-demo.c cell:
>
>
> struct {
> ...
> struct jailhouse_irqchip irqchips[1];
> } __attribute__((packed)) config = {
> .cell = {
> ...
> /* The following was initially Forgot :) */
> .num_irqchips = ARRAY_SIZE(config.irqchips),
> },
>
> ...
>
> .mem_regions = {
> /* GPIOs until exception vectors */ {
> .phys_start = 0x6000d000,
> .virt_start = 0x6000d000,
> .size = 0x2000,
> .flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
> JAILHOUSE_MEM_IO | JAILHOUSE_MEM_ROOTSHARED,
> },
> ...
> },
> .irqchips = {
> /* GIC */ {
> .address = 0x50041000,
> .pin_base = 32,
> .pin_bitmap = {
> 0,
> (1 << ((32 + 32) % 32)), /* GPIO1 */
> 0,
> 0,
> },
> },
> ...
> };
>
> In the root cell configuration I made GPIO mem region
> JAILHOUSE_MEM_ROOTSHARED and I turned off the GPIO-1 interrupt for the root
> cell:
>
> .pin_bitmap = {
> 0xffffffff, 0xfffffffe, 0xffffffff, 0xffffffff
> },
>
> But still I'm not hable to turn-on GPIO-1 interrupt in the inmate cell:
>
> if after a gic_enable_irq(32)
>
> I try to read the is enabler register:
>
> /* GIC base address for NVIDIA TEGRA X1 */
> #define OSEE_GIC_BASE (0x50040000U)
> #define OSEE_GICD_OFFSET (0x1000U)
> #define OSEE_GICC_OFFSET (0x2000U)
>
> /* GICD and GICC base addresses */
> #define OSEE_GICD_BASE (OSEE_GIC_BASE + OSEE_GICD_OFFSET)
> #define OSEE_GICC_BASE (OSEE_GIC_BASE + OSEE_GICC_OFFSET)
> #define OSEE_GICD_ISENABLER (0x0100U)
>
> static OsEE_bool gicd_isenabler(ISRSource source_id)
> {
> unsigned bit = source_id & ((1U << OSEE_GICD_ISENABLER_SHIFT) - 1U);
> unsigned reg_offset = ((source_id >> OSEE_GICD_ISENABLER_SHIFT) << 2U);
> return (OsEE_bool) (
> (osEE_mmio_read32(OSEE_GICD_BASE + OSEE_GICD_ISENABLER + reg_offset) &
> (1U << bit)) != 0U);
> }
>
> gicd_isenabler(32) return 0
>
> When
> gicd_isenabler(27) return 1
>
> So do you any Idea abot what I'm doing wrong?
>
> In any case I would like a comment regarding inmate lib IRQ vectors for ARM64
> support (point 4 of my original mail), more I undestand how the things works,
> more I suspect that the support i buggy. :)
>
> Regards,
> Errico Guidieri
Andreas Kölbl contacted my privatly, maybe for mistake, and pointed to me that
I was mading 2 mistakes:
1) I was disabling the GPIO-1 interrupt from the root-cell (wrong: root cell
configuration tell jailhouse what is basically accessible from root or non-root
cell)
2) I wasn't configuring the GICD_ITARGETSRn register from the inmate-cell with
the right bitmap for the SPI source.
So
I reverted 1)
and
I tried to do 2):
#define OSEE_GICD_ITARGETSR (0x0800U)
typedef uint64_t OsEE_reg;
typedef uint8_t OsEE_core_id;
OSEE_STATIC_INLINE OsEE_core_id osEE_gic_v2_read_itargetsr(ISRSource source_id)
{
OsEE_reg const addr = OSEE_GICD_BASE + OSEE_GICD_ITARGETSR + source_id;
return osEE_mmio_read8(addr);
}
/* The bitmask for the CORE is read from GICD_ITARGETSR0 */
OSEE_STATIC_INLINE OsEE_core_id osEE_gic_v2_get_cpuif_mask(void)
{
return osEE_gic_v2_read_itargetsr(0U);
}
OSEE_STATIC_INLINE void osEE_gic_v2_set_itargetsr(ISRSource source_id,
OsEE_core_id target_cpu)
{
OsEE_reg const addr = OSEE_GICD_BASE + OSEE_GICD_ITARGETSR + source_id;
osEE_mmio_write8(addr, target_cpu);
}
...
osEE_gic_v2_set_itargetsr(32U, osEE_gic_v2_get_cpuif_mask());
but after this call if I read back the GICD_ITARGETSR
(osEE_gic_v2_read_itargetsr(32U))
I get 0.
Could be that the write is trapped inside JH that silently (but wrongly(?))
ignore it?
Regards,
Errico Gudieri
--
You received this message because you are subscribed to the Google Groups
"Jailhouse" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.