source: soft/giet_vm/giet_common/vmem.c @ 295

Last change on this file since 295 was 295, checked in by alain, 10 years ago

Introducing a major release, to suppoort the tsar_generic_leti platform
and the various (external or internal) peripherals configurations.
The map.xml format has been modified, in order to support the new
vci_iopic componentand a new policy for peripherals initialisation.
The IRQs are nom described in the XICU and IOPIC components
(and not anymore in the processors).
To enforce this major change, the map.xml file signature changed:
The signature value must be: 0xDACE2014

This new release has been tested on the tsar_generic_leti platform
for the following mappings:

  • 4c_4p_sort_leti
  • 4c_4p_sort_leti_ext
  • 4c_4p_transpose_leti
  • 4c_4p_transpose_leti_ext
  • 4c_1p_four_leti_ext
  • Property svn:executable set to *
File size: 5.4 KB
Line 
1///////////////////////////////////////////////////////////////////////////////////
2// File     : vmem.c
3// Date     : 01/07/2012
4// Author   : alain greiner
5// Copyright (c) UPMC-LIP6
6///////////////////////////////////////////////////////////////////////////////////
7// The vmem.c and vmem.h files are part ot the GIET-VM nano kernel.
8// They contain the kernel data structures and functions used to dynamically
9// handle the paged virtual memory.
10///////////////////////////////////////////////////////////////////////////////////
11
12#include <utils.h>
13#include <tty_driver.h>
14#include <vmem.h>
15#include <giet_config.h>
16#include <tty_driver.h>
17
18/////////////////////////////////////////////////////////////////////////////
19//     Global variable : IOMMU page table
20/////////////////////////////////////////////////////////////////////////////
21
22__attribute__((section (".iommu"))) page_table_t _iommu_ptab;
23
24//////////////////////////////////////////////////////////////////////////////
25// _iommu_add_pte2()
26//////////////////////////////////////////////////////////////////////////////
27void _iommu_add_pte2( unsigned int ix1,
28                      unsigned int ix2,
29                      unsigned int ppn,
30                      unsigned int flags ) 
31{
32    unsigned int ptba;
33    unsigned int * pt_ppn;
34    unsigned int * pt_flags;
35
36    // get pointer on iommu page table
37    page_table_t * pt = &_iommu_ptab;
38
39    // get ptba and update PT2
40    if ((pt->pt1[ix1] & PTE_V) == 0) 
41    {
42        _printf("\n[GIET ERROR] in iommu_add_pte2() : "
43                "IOMMU PT1 entry not mapped / ix1 = %d\n", ix1 );
44        _exit();
45    }
46    else 
47    {
48        ptba = pt->pt1[ix1] << 12;
49        pt_flags = (unsigned int *) (ptba + 8 * ix2);
50        pt_ppn = (unsigned int *) (ptba + 8 * ix2 + 4);
51        *pt_flags = flags;
52        *pt_ppn = ppn;
53    }
54} // end _iommu_add_pte2()
55
56
57//////////////////////////////////////////////////////////////////////////////
58// _iommu_inval_pte2()
59//////////////////////////////////////////////////////////////////////////////
60void _iommu_inval_pte2( unsigned int ix1, 
61                        unsigned int ix2 ) 
62{
63    unsigned int ptba;
64    unsigned int * pt_flags;
65
66    // get pointer on iommu page table
67    page_table_t * pt = &_iommu_ptab;
68
69    // get ptba and inval PTE2
70    if ((pt->pt1[ix1] & PTE_V) == 0)
71    {
72        _printf("\n[GIET ERROR] in iommu_inval_pte2() "
73              "IOMMU PT1 entry not mapped / ix1 = %d\n", ix1 );
74        _exit();
75    }
76    else {
77        ptba = pt->pt1[ix1] << 12;
78        pt_flags = (unsigned int *) (ptba + 8 * ix2);
79        *pt_flags = 0;
80    }   
81} // end _iommu_inval_pte2()
82
83//////////////////////////////////////////////////////////////////////////////
84// This function makes a "vpn" to "ppn" translation, from the page table
85// defined by the virtual address "pt". The MMU is supposed to be activated.
86// It uses the address extension mechanism for physical addressing.
87// Return 0 if success. Return 1 if PTE1 or PTE2 unmapped.
88//////////////////////////////////////////////////////////////////////////////
89unsigned int _v2p_translate( page_table_t*  pt,
90                             unsigned int   vpn,
91                             unsigned int*  ppn,
92                             unsigned int*  flags ) 
93{
94    unsigned long long ptba;
95    unsigned long long pte2_paddr;
96
97    register unsigned int pte2_msb;
98    register unsigned int pte2_lsb;
99    register unsigned int flags_value;
100    register unsigned int ppn_value;
101
102    unsigned int ix1 = vpn >> 9;
103    unsigned int ix2 = vpn & 0x1FF;
104
105    // get PTE1
106    unsigned int pte1 = pt->pt1[ix1];
107
108    // check PTE1 mapping
109    if ( (pte1 & PTE_V) == 0 )  return 1;
110
111    // get physical addresses of pte2 (two 32 bits words)
112    ptba       = (unsigned long long) (pt->pt1[ix1] & 0x0FFFFFFF) << 12;
113    pte2_paddr = ptba + 8*ix2;
114    pte2_lsb   = (unsigned int) pte2_paddr;
115    pte2_msb   = (unsigned int) (pte2_paddr >> 32);
116
117    // gets ppn_value and flags_value, after temporary DTLB desactivation
118    asm volatile (
119                "li      $2,     0xFFFFFFFE  \n"     /* Mask for IE bits     */
120                "mfc0    $4,     $12         \n"     /* $4 <= SR             */ 
121                "and     $2,     $2,    $4   \n"
122                "mtc0    $2,     $12         \n"     /* disable Interrupts   */
123
124                "li      $3,     0xB         \n"     
125                "mtc2    $3,     $1          \n"     /* DTLB unactivated     */ 
126
127                "mtc2    %2,     $24         \n"     /* PADDR_EXT <= msb     */
128                "lw      %0,     0(%3)       \n"     /* read flags           */ 
129                "lw      %1,     4(%3)       \n"     /* read ppn             */
130                "mtc2    $0,     $24         \n"     /* PADDR_EXT <= 0       */
131
132                "li      $3,     0xF         \n" 
133                "mtc2    $3,     $1          \n"     /* DTLB activated       */
134
135                "mtc0    $4,     $12         \n"     /* restore SR           */
136                : "=r" (flags_value), "=r" (ppn_value)
137                : "r" (pte2_msb), "r" (pte2_lsb)
138                : "$2","$3","$4");
139
140    // check PTE2 mapping
141    if ( (flags_value & PTE_V) == 0 )  return 1;
142
143    // set return values
144    *ppn = ppn_value;
145    *flags = flags_value;
146    return 0;
147} // end _v2p_translate()
148
149
150
151// Local Variables:
152// tab-width: 4
153// c-basic-offset: 4
154// c-file-offsets:((innamespace . 0)(inline-open . 0))
155// indent-tabs-mode: nil
156// End:
157// vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
158
159
Note: See TracBrowser for help on using the repository browser.