source: trunk/hal/tsar_mips32/drivers/soclib_mmc.c @ 336

Last change on this file since 336 was 279, checked in by alain, 7 years ago

1) Introduce independant command fields for the various devices in the thread descriptor.
2) Introduce a new dev_pic_enable_ipi() function in the generic PIC device
3) Fix two bugs identified by Maxime in the scheduler initialisation, and in the sched_select().
4) fix several bugs in the TSAR hal_kentry.S.
5) Introduce a third kgiet segment (besides kdata and kcode) in the TSAR bootloader.

File size: 5.4 KB
Line 
1/*
2 * soclib_mmc.c - soclib L2 cache controller driver implementation.
3 *
4 * Author     Alain Greiner (2016)
5 *
6 * Copyright (c) UPMC Sorbonne Universites
7 *
8 * This file is part of ALMOS-MKH..
9 *
10 * ALMOS-MKH. is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; version 2.0 of the License.
13 *
14 * ALMOS-MKH. is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with ALMOS-MKH.; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
24
25#include <hal_types.h>
26#include <chdev.h>
27#include <dev_mmc.h>
28#include <soclib_mmc.h>
29#include <spinlock.h>
30#include <thread.h>
31#include <printk.h>
32
33
34///////////////////////////////////////
35void soclib_mmc_init( chdev_t * chdev )
36{
37    // get pointer on MMC segment base
38    uint32_t * base = (uint32_t *)GET_PTR( chdev->base );
39
40    // set driver specific fields in device descriptor
41    chdev->cmd = &soclib_mmc_cmd;
42    chdev->isr = &soclib_mmc_isr;
43
44    // enable MMC IRQ
45    *(base + (SOCLIB_MMC_ERROR_FUNC << 7) + SOCLIB_MMC_ERROR_IRQ_ENABLE) = 1;
46} 
47
48
49//////////////////////////////////////////////////////////////
50void __attribute__ ((noinline)) soclib_mmc_cmd( xptr_t th_xp )
51{
52    xptr_t     dev_xp;       // extended pointer on MMC device
53    uint32_t   type;         // MMC command : type
54    uint64_t   buf_paddr;    // MMC command : buffer physical address
55    uint32_t   buf_size;     // MMC command : buffer size
56    uint32_t   reg_index;    // MMC command : register index in MMC peripheral
57    uint32_t * reg_ptr;      // MMC command : pointer on dst/src buffer in client cluster
58
59    // get client thread cluster and local pointer
60    cxy_t      th_cxy = GET_CXY( th_xp );
61    thread_t * th_ptr = (thread_t *)GET_PTR( th_xp );
62
63    // get command type and extended pointer on MMC device
64    type   =         hal_remote_lw ( XPTR( th_cxy , &th_ptr->mmc_cmd.type   ) );
65    dev_xp = (xptr_t)hal_remote_lwd( XPTR( th_cxy , &th_ptr->mmc_cmd.dev_xp ) );
66
67    // get MMC device cluster and local pointer
68    cxy_t     dev_cxy = GET_CXY( dev_xp );
69    chdev_t * dev_ptr = (chdev_t *)GET_PTR( dev_xp );
70
71    // get extended pointer on SOCLIB-MMC peripheral
72    xptr_t     mmc_xp = hal_remote_lw( XPTR( dev_cxy , &dev_ptr->base ) );
73
74    // get SOCLIB_MMC peripheral cluster and local pointer
75    cxy_t      mmc_cxy = GET_CXY( mmc_xp );
76    uint32_t * mmc_ptr = (uint32_t *)GET_PTR( mmc_xp );
77
78    if( (type == MMC_CC_INVAL) || (type == MMC_CC_SYNC) )
79    {
80        // get buffer paddr
81        buf_paddr = hal_remote_lwd( XPTR( th_cxy , &th_ptr->mmc_cmd.buf_paddr ) );
82
83        // split buffer paddr in two 32 bits words
84        uint32_t   buf_lo = (uint32_t)( buf_paddr );
85        uint32_t   buf_hi = (uint32_t)( buf_paddr>>32 );
86
87        // get buffer size
88        buf_size   = hal_remote_lw( XPTR( th_cxy , &th_ptr->mmc_cmd.buf_size ) );
89
90        // get command type
91        uint32_t cc_cmd;
92        if( type == MMC_CC_INVAL )  cc_cmd = SOCLIB_MMC_CC_INVAL;
93        else                        cc_cmd = SOCLIB_MMC_CC_SYNC; 
94
95        // set SOCLIB_MMC registers to start INVAL/SYNC operation
96        hal_remote_sw( XPTR( mmc_cxy , mmc_ptr + SOCLIB_MMC_ADDR_LO    ) , buf_lo );
97        hal_remote_sw( XPTR( mmc_cxy , mmc_ptr + SOCLIB_MMC_ADDR_HI    ) , buf_hi );
98        hal_remote_sw( XPTR( mmc_cxy , mmc_ptr + SOCLIB_MMC_BUF_LENGTH ) , buf_size ); 
99        hal_remote_sw( XPTR( mmc_cxy , mmc_ptr + SOCLIB_MMC_CMD_TYPE   ) , cc_cmd ); 
100    }
101    else  // (type == MMC_GET_ERROR) or (type == MMC_GET_ERROR) pr (type == MMC_GET_INSTRU )
102    {
103        // get src/dst buffer local pointer and register index
104        reg_ptr   = (uint32_t *)hal_remote_lpt( XPTR( th_cxy , &th_ptr->mmc_cmd.reg_ptr ) );
105        reg_index = hal_remote_lw( XPTR( th_cxy , &th_ptr->mmc_cmd.reg_index ) );
106
107        // move register to/from local buffer
108        if( (type == MMC_GET_ERROR) || (type == MMC_GET_INSTRU) )
109        {
110            *reg_ptr =  hal_remote_lw( XPTR( mmc_cxy , mmc_ptr + reg_index ) );
111        }
112        else  // type == MMC_SET_ERROR
113        {
114            hal_remote_sw( XPTR( mmc_cxy , mmc_ptr + reg_index ) , *reg_ptr );
115        }
116    }
117} // end soclib_mmc_cmd()
118
119
120////////////////////////////////////////////////////////////////
121void __attribute__ ((noinline)) soclib_mmc_isr( chdev_t * chdev )
122{
123    // get pointer on MMC segment base
124    uint32_t * base = (uint32_t *)GET_PTR( chdev->base );
125
126    // get faulty ADDRESS and SRCID from MMC registers
127    uint32_t paddr_lo = *(base + (SOCLIB_MMC_ERROR_FUNC << 7) + SOCLIB_MMC_ERROR_ADDR_LO);
128    uint32_t paddr_hi = *(base + (SOCLIB_MMC_ERROR_FUNC << 7) + SOCLIB_MMC_ERROR_ADDR_HI);
129    uint32_t srcid    = *(base + (SOCLIB_MMC_ERROR_FUNC << 7) + SOCLIB_MMC_ERROR_SRCID);
130
131    paddr_t paddr = (((paddr_t)paddr_hi)<<32) + ((paddr_t)paddr_lo);
132   
133    // reset MMC IRQ
134    *(base + (SOCLIB_MMC_ERROR_FUNC << 7) + SOCLIB_MMC_ERROR_IRQ_RESET) = 0;
135   
136    // print an error message on kernel terminal TODO : should be improved
137    printk("\n[ERROR] reported from MMC in cluster %x : faulty address = %l / srcid = %x\n",
138           paddr , srcid );
139
140} // end soclib_mmc_isr()
141
142
143
Note: See TracBrowser for help on using the repository browser.