OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [devs/] [flash/] [powerpc/] [moab/] [current/] [src/] [moab_nand_flash.c] - Blame information for rev 838

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 786 skrzyp
//==========================================================================
2
//
3
//      moab_nand_flash.c
4
//
5
//      Flash programming for Toshiba NAND FLASH device on MOAB board
6
//
7
//==========================================================================
8
// ####ECOSGPLCOPYRIGHTBEGIN####                                            
9
// -------------------------------------------                              
10
// This file is part of eCos, the Embedded Configurable Operating System.   
11
// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
12
//
13
// eCos is free software; you can redistribute it and/or modify it under    
14
// the terms of the GNU General Public License as published by the Free     
15
// Software Foundation; either version 2 or (at your option) any later      
16
// version.                                                                 
17
//
18
// eCos is distributed in the hope that it will be useful, but WITHOUT      
19
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or    
20
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License    
21
// for more details.                                                        
22
//
23
// You should have received a copy of the GNU General Public License        
24
// along with eCos; if not, write to the Free Software Foundation, Inc.,    
25
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.            
26
//
27
// As a special exception, if other files instantiate templates or use      
28
// macros or inline functions from this file, or you compile this file      
29
// and link it with other works to produce a work based on this file,       
30
// this file does not by itself cause the resulting work to be covered by   
31
// the GNU General Public License. However the source code for this file    
32
// must still be made available in accordance with section (3) of the GNU   
33
// General Public License v2.                                               
34
//
35
// This exception does not invalidate any other reasons why a work based    
36
// on this file might be covered by the GNU General Public License.         
37
// -------------------------------------------                              
38
// ####ECOSGPLCOPYRIGHTEND####                                              
39
//==========================================================================
40
//#####DESCRIPTIONBEGIN####
41
//
42
// Author(s):    Gary Thomas <gary@mlbassoc.com>
43
// Contributors: 
44
// Date:         2003-09-02
45
// Purpose:      
46
// Description:  
47
//              
48
//####DESCRIPTIONEND####
49
//
50
//==========================================================================
51
 
52
#include <cyg/infra/cyg_type.h>
53
#define CYGARC_HAL_COMMON_EXPORT_CPU_MACROS
54
#include <cyg/hal/ppc_regs.h>           // Platform registers
55
#include <cyg/hal/hal_io.h>             // I/O macros
56
#include <cyg/hal/hal_if.h>             // Virtual vector interfaces
57
 
58
// There's a single TC58256 or TC58DVG02 on the MOAB board. 
59
 
60
#define CYGHWR_DEVS_FLASH_TOSHIBA_TC58256
61
#define CYGHWR_DEVS_FLASH_TOSHIBA_TC58DVG02
62
#define CYGNUM_FLASH_BLANK      (1)
63
#define CYGNUM_FLASH_INTERLEAVE (1)
64
#define CYGNUM_FLASH_WIDTH      (8)
65
#define CYGNUM_FLASH_SERIES     (1)
66
#define CYGNUM_FLASH_BASE       (_MOAB_NAND)
67
 
68
#define CYGHWR_FLASH_TC58XXX_CE   moab_CE 
69
#define CYGHWR_FLASH_TC58XXX_CLE  moab_CLE 
70
#define CYGHWR_FLASH_TC58XXX_ALE  moab_ALE
71
#define CYGHWR_FLASH_TC58XXX_RDY  moab_RDY
72
 
73
//
74
// Select the NAND device - this will be held until the
75
// entire command/data sequence has completed (which is
76
// necessary for read sequential)
77
//
78
static void __inline__
79
moab_CE(int state)
80
{
81
    cyg_uint32 gpio_or;
82
    HAL_READ_UINT32(GPIO_OR, gpio_or);
83
    if (state) {
84
        // Assert CE
85
        gpio_or &= ~_MOAB_CE;
86
    } else {
87
        // De-assert CE
88
        gpio_or |= _MOAB_CE;
89
    }
90
    HAL_WRITE_UINT32(GPIO_OR, gpio_or);
91
}
92
 
93
//
94
// Prepare to send a command byte to the NAND interface
95
//
96
static void __inline__
97
moab_CLE(int state)
98
{
99
    cyg_uint32 gpio_or;
100
    HAL_READ_UINT32(GPIO_OR, gpio_or);
101
    if (state) {
102
        // Assert CLE
103
        gpio_or |= _MOAB_CLE;
104
    } else {
105
        // De-assert CLE
106
        gpio_or &= ~_MOAB_CLE;
107
    }
108
    HAL_WRITE_UINT32(GPIO_OR, gpio_or);
109
}
110
 
111
//
112
// Prepare to send address byte(s) to the NAND interface
113
//
114
static void __inline__
115
moab_ALE(int state)
116
{
117
    cyg_uint32 gpio_or;
118
 
119
    HAL_READ_UINT32(GPIO_OR, gpio_or);
120
    if (state) {
121
        // Assert ALE
122
        gpio_or |= _MOAB_ALE;
123
    } else {
124
        // De-assert ALE
125
        gpio_or &= ~_MOAB_ALE;
126
    }
127
    HAL_WRITE_UINT32(GPIO_OR, gpio_or);
128
}
129
 
130
//
131
// Wait until the NAND device is ready (after a long operation)
132
//
133
static bool __inline__
134
moab_RDY(void)
135
{
136
    cyg_uint32 gpio_ir;
137
 
138
    HAL_READ_UINT32(GPIO_IR, gpio_ir);
139
    return ((gpio_ir & _MOAB_RDY) != 0);
140
}
141
 
142
#include <cyg/io/flash_tc58xxx.inl>
143
 
144
 
145
// ------------------------------------------------------------------------
146
// EOF moab_nand_flash.c

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.