2010-08-17 21:28:51 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* configs/ea3131/src/up_fillpage.c
|
|
|
|
* arch/arm/src/board/up_fillpage.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2010-08-18 02:35:53 +02:00
|
|
|
#include <errno.h>
|
2010-08-17 21:28:51 +02:00
|
|
|
#include <debug.h>
|
|
|
|
|
2010-08-18 02:35:53 +02:00
|
|
|
#include <nuttx/sched.h>
|
|
|
|
#include <nuttx/page.h>
|
2010-08-17 21:28:51 +02:00
|
|
|
|
|
|
|
#ifdef CONFIG_PAGING
|
2010-09-08 19:38:44 +02:00
|
|
|
#ifdef CONFIG_PAGING_BINPATH
|
|
|
|
# include <sys/stat.h>
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <stdbool.h>
|
|
|
|
# include <unistd.h>
|
|
|
|
# include <fcntl.h>
|
2010-09-09 00:06:38 +02:00
|
|
|
# ifdef CONFIG_PAGING_SDSLOT
|
|
|
|
# include <stdio.h>
|
|
|
|
# include <sys/mount.h>
|
|
|
|
# include <nuttx/sdio.h>
|
|
|
|
# include <nuttx/mmcsd.h>
|
|
|
|
# include "lpc313x_internal.h"
|
|
|
|
# endif
|
2010-09-08 19:38:44 +02:00
|
|
|
#endif
|
2010-08-17 21:28:51 +02:00
|
|
|
|
2010-09-12 04:22:13 +02:00
|
|
|
#if defined(CONFIG_PAGING_M25PX) || defined(CONFIG_PAGING_AT45DB)
|
2010-09-11 03:58:26 +02:00
|
|
|
# include <sys/ioctl.h>
|
|
|
|
# include <nuttx/ioctl.h>
|
|
|
|
# include <nuttx/spi.h>
|
|
|
|
# include <nuttx/mtd.h>
|
|
|
|
#endif
|
|
|
|
|
2010-08-17 21:28:51 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2010-09-09 00:06:38 +02:00
|
|
|
/* Configuration ************************************************************/
|
|
|
|
|
|
|
|
/* SD SLOT number might depend on the board configuration */
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_BOARD_EA3131
|
2010-09-11 03:58:26 +02:00
|
|
|
# define HAVE_SD 1
|
|
|
|
# define HAVE_SPINOR 1
|
2010-09-09 00:06:38 +02:00
|
|
|
# if defined(CONFIG_PAGING_SDSLOT) && CONFIG_PAGING_SDSLOT != 0
|
|
|
|
# error "Only one SD slot"
|
|
|
|
# undef CONFIG_PAGING_SDSLOT
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
/* Add configuration for new LPC313X boards here */
|
|
|
|
# error "Unrecognized LPC313X board"
|
|
|
|
# undef CONFIG_PAGING_SDSLOT
|
|
|
|
# undef HAVE_SD
|
2010-09-11 03:58:26 +02:00
|
|
|
# undef HAVE_SPINOR
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Sanity check: We can only perform paging using a single source device */
|
|
|
|
|
2010-09-12 04:22:13 +02:00
|
|
|
#if defined(CONFIG_PAGING_M25PX) && defined(CONFIG_PAGING_AT45DB)
|
|
|
|
# error "Both CONFIG_PAGING_M25PX and CONFIG_PAGING_AT45DB are defined"
|
|
|
|
# undef CONFIG_PAGING_M25PX
|
|
|
|
#endif
|
2010-09-11 03:58:26 +02:00
|
|
|
#if defined(CONFIG_PAGING_BINPATH) && defined(CONFIG_PAGING_M25PX)
|
|
|
|
# error "Both CONFIG_PAGING_BINPATH and CONFIG_PAGING_M25PX are defined"
|
|
|
|
# undef CONFIG_PAGING_BINPATH
|
2010-09-09 00:06:38 +02:00
|
|
|
#endif
|
2010-09-12 04:22:13 +02:00
|
|
|
#if defined(CONFIG_PAGING_BINPATH) && defined(CONFIG_PAGING_AT45DB)
|
|
|
|
# error "Both CONFIG_PAGING_BINPATH and CONFIG_PAGING_AT45DB are defined"
|
|
|
|
# undef CONFIG_PAGING_BINPATH
|
|
|
|
#endif
|
2010-09-09 00:06:38 +02:00
|
|
|
|
|
|
|
/* Are we accessing the page source data through a file path? */
|
|
|
|
|
|
|
|
#ifdef CONFIG_PAGING_BINPATH
|
|
|
|
|
|
|
|
/* Can't support SD if the board does not support SD (duh) */
|
|
|
|
|
|
|
|
# if defined(CONFIG_PAGING_SDSLOT) && !defined(HAVE_SD)
|
|
|
|
# error "This board does not support SD"
|
|
|
|
# undef CONFIG_PAGING_SDSLOT
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/* Can't support SD if mountpoints are disabled or if SDIO support
|
|
|
|
* is not enabled.
|
|
|
|
*/
|
|
|
|
|
|
|
|
# if defined(CONFIG_DISABLE_MOUNTPOINT) || !defined(CONFIG_LPC313X_MCI)
|
|
|
|
# ifdef CONFIG_PAGING_SDSLOT
|
|
|
|
# error "Mountpoints and/or MCI disabled"
|
|
|
|
# endif
|
|
|
|
# undef CONFIG_PAGING_SDSLOT
|
|
|
|
# undef HAVE_SD
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/* A mountpoint for the FAT file system must be provided */
|
|
|
|
|
|
|
|
# if !defined(CONFIG_PAGING_MOUNTPT) && defined(CONFIG_PAGING_SDSLOT)
|
|
|
|
# error "No CONFIG_PAGING_MOUNTPT provided"
|
|
|
|
# undef CONFIG_PAGING_SDSLOT
|
|
|
|
# undef HAVE_SD
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/* If no minor number is provided, default to zero */
|
|
|
|
|
|
|
|
# ifndef CONFIG_PAGING_MINOR
|
|
|
|
# define CONFIG_PAGING_MINOR 0
|
|
|
|
# endif
|
|
|
|
|
|
|
|
#endif /* CONFIG_PAGING_BINPATH */
|
|
|
|
|
2010-09-11 03:58:26 +02:00
|
|
|
/* Are we accessing the page source data through the M25P* MTD device? */
|
|
|
|
|
2010-09-12 04:22:13 +02:00
|
|
|
#if defined(CONFIG_PAGING_M25PX) || defined(CONFIG_PAGING_AT45DB)
|
2010-09-11 03:58:26 +02:00
|
|
|
|
|
|
|
/* Verify that SPI support is enabld */
|
|
|
|
|
|
|
|
#ifndef CONFIG_LPC313X_SPI
|
|
|
|
# error "SPI support is not enabled"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Make sure that some value is defined for the offset into the FLASH
|
|
|
|
* of the NuttX binary image.
|
|
|
|
*/
|
|
|
|
|
2010-09-12 04:22:13 +02:00
|
|
|
# ifndef CONFIG_PAGING_BINOFFSET
|
|
|
|
# define CONFIG_PAGING_BINOFFSET 0
|
2010-09-11 03:58:26 +02:00
|
|
|
# endif
|
|
|
|
|
|
|
|
/* Make sure that some value is defined for the SPI port number */
|
|
|
|
|
2010-09-12 04:22:13 +02:00
|
|
|
# ifndef CONFIG_PAGING_SPIPORT
|
|
|
|
# define CONFIG_PAGING_SPIPORT 0
|
2010-09-11 03:58:26 +02:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2010-09-08 19:38:44 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
2010-09-11 03:58:26 +02:00
|
|
|
/* State structure needed to support paging from a file */
|
|
|
|
|
2010-09-08 19:38:44 +02:00
|
|
|
#ifdef CONFIG_PAGING_BINPATH
|
|
|
|
struct pg_source_s
|
|
|
|
{
|
|
|
|
bool initialized; /* TRUE: we are initialized */
|
|
|
|
int fd; /* File descriptor of the nuttx.bin file */
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2010-09-11 03:58:26 +02:00
|
|
|
/* State structured needd to support paging through the M25P* MTD interface. */
|
|
|
|
|
2010-09-12 04:22:13 +02:00
|
|
|
#if defined(CONFIG_PAGING_M25PX) || defined(CONFIG_PAGING_AT45DB)
|
2010-09-11 03:58:26 +02:00
|
|
|
struct pg_source_s
|
|
|
|
{
|
|
|
|
/* If interrupts or DMA are used, then we will have to defer initialization */
|
|
|
|
|
|
|
|
bool initialized; /* TRUE: we are initialized */
|
|
|
|
|
2010-09-11 05:24:26 +02:00
|
|
|
/* This is the M25P* device state structure */
|
2010-09-11 03:58:26 +02:00
|
|
|
|
|
|
|
FAR struct mtd_dev_s *mtd;
|
|
|
|
|
|
|
|
/* This the the device geometry */
|
|
|
|
|
|
|
|
#ifdef CONFIG_DEBUG
|
|
|
|
FAR struct mtd_geometry_s geo;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2010-08-17 21:28:51 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
2010-09-12 04:22:13 +02:00
|
|
|
#if defined(CONFIG_PAGING_BINPATH) || defined(CONFIG_PAGING_M25PX) || defined(CONFIG_PAGING_AT45DB)
|
2010-09-08 19:38:44 +02:00
|
|
|
static struct pg_source_s g_pgsrc;
|
|
|
|
#endif
|
|
|
|
|
2010-08-17 21:28:51 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2010-09-09 00:06:38 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: lpc313x_initsrc()
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Initialize the source device that will support paging.
|
|
|
|
* If BINPATH is defined, then it is the full path to a file on a mounted file
|
|
|
|
* system. In this case initialization will be deferred until the first
|
|
|
|
* time that up_fillpage() is called.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2010-09-11 03:58:26 +02:00
|
|
|
#if defined(CONFIG_PAGING_BINPATH)
|
2010-09-09 00:06:38 +02:00
|
|
|
static inline void lpc313x_initsrc(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_PAGING_SDSLOT
|
|
|
|
FAR struct sdio_dev_s *sdio;
|
|
|
|
int ret;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Are we already initialized? */
|
|
|
|
|
|
|
|
if (!g_pgsrc.initialized)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_PAGING_SDSLOT
|
|
|
|
char devname[16];
|
|
|
|
#endif
|
|
|
|
|
2010-09-12 16:35:25 +02:00
|
|
|
pgllvdbg("Initializing %s\n", CONFIG_PAGING_BINPATH);
|
2010-09-09 00:06:38 +02:00
|
|
|
|
|
|
|
/* No, do we need to mount an SD device? */
|
|
|
|
|
|
|
|
#ifdef CONFIG_PAGING_SDSLOT
|
|
|
|
|
|
|
|
/* Yes.. First, get an instance of the SDIO interface */
|
|
|
|
|
|
|
|
sdio = sdio_initialize(CONFIG_PAGING_SDSLOT);
|
|
|
|
DEBUGASSERT(sdio != NULL);
|
|
|
|
|
|
|
|
/* Then bind the SDIO interface to the SD driver */
|
|
|
|
|
|
|
|
ret = mmcsd_slotinitialize(CONFIG_PAGING_MINOR, sdio);
|
|
|
|
DEBUGASSERT(ret == OK);
|
|
|
|
|
|
|
|
/* Then let's guess and say that there is a card in the slot.
|
|
|
|
* (We are basically jodido anyway if there is no card in the slot).
|
|
|
|
*/
|
|
|
|
|
|
|
|
sdio_mediachange(sdio, true);
|
|
|
|
|
|
|
|
/* Now mount the file system */
|
|
|
|
|
|
|
|
snprintf(devname, 16, "/dev/mmcsd%d", CONFIG_PAGING_MINOR);
|
|
|
|
ret = mount(devname, CONFIG_PAGING_MOUNTPT, "vfat", MS_RDONLY, NULL);
|
|
|
|
DEBUGASSERT(ret == OK);
|
|
|
|
|
|
|
|
#endif /* CONFIG_PAGING_SDSLOT */
|
|
|
|
|
|
|
|
/* Open the selected path for read-only access */
|
|
|
|
|
|
|
|
g_pgsrc.fd = open(CONFIG_PAGING_BINPATH, O_RDONLY);
|
|
|
|
DEBUGASSERT(g_pgsrc.fd >= 0);
|
2010-09-12 16:35:25 +02:00
|
|
|
|
|
|
|
/* Then we are initialized */
|
|
|
|
|
2010-09-09 00:06:38 +02:00
|
|
|
g_pgsrc.initialized = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-12 04:22:13 +02:00
|
|
|
#elif defined(CONFIG_PAGING_M25PX) || defined(CONFIG_PAGING_AT45DB)
|
2010-09-11 03:58:26 +02:00
|
|
|
static inline void lpc313x_initsrc(void)
|
|
|
|
{
|
2010-09-12 16:35:25 +02:00
|
|
|
FAR struct spi_dev_s *spi;
|
2010-09-11 03:58:26 +02:00
|
|
|
#ifdef CONFIG_DEBUG
|
|
|
|
uint32_t capacity;
|
|
|
|
int ret;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Are we already initialized? */
|
|
|
|
|
2010-09-12 16:35:25 +02:00
|
|
|
if (!g_pgsrc.initialized)
|
|
|
|
{
|
|
|
|
/* No... the initialize now */
|
|
|
|
|
|
|
|
pgllvdbg("Initializing\n");
|
2010-09-11 03:58:26 +02:00
|
|
|
|
|
|
|
/* First get an instance of the SPI device interface */
|
|
|
|
|
2010-09-12 16:35:25 +02:00
|
|
|
spi = up_spiinitialize(CONFIG_PAGING_SPIPORT);
|
2010-09-11 03:58:26 +02:00
|
|
|
DEBUGASSERT(spi != NULL);
|
|
|
|
|
2010-09-12 04:22:13 +02:00
|
|
|
/* Then bind the SPI interface to the MTD driver */
|
2010-09-11 03:58:26 +02:00
|
|
|
|
2010-09-12 04:22:13 +02:00
|
|
|
#ifdef CONFIG_PAGING_M25PX
|
2010-09-11 03:58:26 +02:00
|
|
|
g_pgsrc.mtd = m25p_initialize(spi);
|
2010-09-12 04:22:13 +02:00
|
|
|
#else
|
|
|
|
g_pgsrc.mtd = at45db_initialize(spi);
|
|
|
|
#endif
|
2010-09-11 03:58:26 +02:00
|
|
|
DEBUGASSERT(g_pgsrc.mtd != NULL);
|
|
|
|
|
|
|
|
/* Verify that we can use the device */
|
|
|
|
|
|
|
|
#ifdef CONFIG_DEBUG
|
|
|
|
/* Get the device geometry. (casting to uintptr_t first eliminates
|
|
|
|
* complaints on some architectures where the sizeof long is different
|
|
|
|
* from the size of a pointer).
|
|
|
|
*/
|
|
|
|
|
|
|
|
ret = MTD_IOCTL(g_pgsrc.mtd, MTDIOC_GEOMETRY, (unsigned long)&g_pgsrc.geo);
|
|
|
|
DEBUGASSERT(ret >= 0);
|
|
|
|
capacity = g_pgsrc.geo.erasesize*g_pgsrc.geo.neraseblocks;
|
|
|
|
pgllvdbg("capacity: %d\n", capacity);
|
2010-09-12 04:22:13 +02:00
|
|
|
DEBUGASSERT(capacity >= (CONFIG_PAGING_BINOFFSET + PG_TEXT_VSIZE));
|
2010-09-11 03:58:26 +02:00
|
|
|
#endif
|
|
|
|
|
2010-09-12 16:35:25 +02:00
|
|
|
/* We are now initialized */
|
|
|
|
|
2010-09-11 03:58:26 +02:00
|
|
|
g_pgsrc.initialized = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
2010-09-09 00:06:38 +02:00
|
|
|
# define lpc313x_initsrc()
|
2010-09-11 03:58:26 +02:00
|
|
|
#endif
|
2010-09-09 00:06:38 +02:00
|
|
|
|
2010-08-17 21:28:51 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2010-09-09 00:06:38 +02:00
|
|
|
/****************************************************************************
|
2010-08-17 21:28:51 +02:00
|
|
|
* Name: up_fillpage()
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* After a page is allocated and mapped by up_allocpage(), the actual
|
|
|
|
* filling of the page with data from the non-volatile, must be performed
|
|
|
|
* by a separate call to the architecture-specific function, up_fillpage().
|
|
|
|
* This function is non-blocking, it will start an asynchronous page fill.
|
|
|
|
* The common paging logic will provide a callback function, pg_callback,
|
|
|
|
* that will be called when the page fill is finished (or an error occurs).
|
|
|
|
* This callback is assumed to occur from an interrupt level when the
|
|
|
|
* device driver completes the fill operation.
|
|
|
|
*
|
2010-09-02 01:52:38 +02:00
|
|
|
* NOTE 1: Allocating and filling a page is a two step process. up_allocpage()
|
2010-08-17 21:28:51 +02:00
|
|
|
* allocates the page, and up_fillpage() fills it with data from some non-
|
|
|
|
* volatile storage device. This distinction is made because up_allocpage()
|
|
|
|
* can probably be implemented in board-independent logic whereas up_fillpage()
|
|
|
|
* probably must be implemented as board-specific logic.
|
|
|
|
*
|
2010-09-02 01:52:38 +02:00
|
|
|
* NOTE 2: The initial mapping of vpage will be read-able, write-able,
|
|
|
|
* but non-cacheable. No special actions will be required of
|
|
|
|
* up_fillpage() in order to write into this allocated page. If the
|
|
|
|
* virtual address maps to a text region, however, this function should
|
|
|
|
* remap the region so that is is read/execute only. It should be made
|
|
|
|
* cache-able in any case.
|
|
|
|
|
2010-08-17 21:28:51 +02:00
|
|
|
* Input Parameters:
|
|
|
|
* tcb - A reference to the task control block of the task that needs to
|
|
|
|
* have a page fill. Architecture-specific logic can retrieve page
|
|
|
|
* fault information from the architecture-specific context
|
|
|
|
* information in this TCB to perform the fill.
|
|
|
|
* pg_callbck - The function to be called when the page fill is complete.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* This function will return zero (OK) if the page fill was successfully
|
|
|
|
* started (the result of the page fill is passed to the callback function
|
|
|
|
* as the result argument). A negated errno value may be returned if an
|
|
|
|
* error occurs. All errors, however, are fatal.
|
|
|
|
*
|
|
|
|
* NOTE: -EBUSY has a special meaning. It is used internally to mean that
|
|
|
|
* the callback function has not executed. Therefore, -EBUSY should
|
|
|
|
* never be provided in the result argument of pg_callback.
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* - This function is called from the normal tasking context (but
|
|
|
|
* interrupts siabled). The implementation must take whatever actions
|
|
|
|
* are necessary to assure that the operation is safe within this context.
|
|
|
|
* - Upon return, the caller will sleep waiting for the page fill callback
|
|
|
|
* to occur. The callback function will perform the wakeup.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_PAGING_BLOCKINGFILL
|
2010-09-08 19:38:44 +02:00
|
|
|
|
|
|
|
/* Version 1: Supports blocking fill operations */
|
|
|
|
|
2010-08-17 21:28:51 +02:00
|
|
|
int up_fillpage(FAR _TCB *tcb, FAR void *vpage)
|
|
|
|
{
|
2010-09-11 03:58:26 +02:00
|
|
|
#if defined(CONFIG_PAGING_BINPATH)
|
2010-09-08 19:38:44 +02:00
|
|
|
ssize_t nbytes;
|
|
|
|
off_t offset;
|
|
|
|
off_t pos;
|
2010-09-12 04:22:13 +02:00
|
|
|
#elif defined(CONFIG_PAGING_M25PX) || defined(CONFIG_PAGING_AT45DB)
|
2010-09-11 03:58:26 +02:00
|
|
|
ssize_t nbytes;
|
|
|
|
off_t offset;
|
2010-09-08 19:38:44 +02:00
|
|
|
#endif
|
|
|
|
|
2010-09-12 16:35:25 +02:00
|
|
|
pglldbg("TCB: %p vpage: %p far: %08x\n", tcb, vpage, tcb->xcp.far);
|
2010-09-08 19:38:44 +02:00
|
|
|
DEBUGASSERT(tcb->xcp.far >= PG_PAGED_VBASE && tcb->xcp.far < PG_PAGED_VEND);
|
|
|
|
|
|
|
|
/* If BINPATH is defined, then it is the full path to a file on a mounted file
|
2010-09-09 00:06:38 +02:00
|
|
|
* system. In this case initialization will be deferred until the first
|
2010-09-08 19:38:44 +02:00
|
|
|
* time that up_fillpage() is called. Are we initialized?
|
|
|
|
*/
|
|
|
|
|
2010-09-11 03:58:26 +02:00
|
|
|
#if defined(CONFIG_PAGING_BINPATH)
|
2010-09-08 19:38:44 +02:00
|
|
|
|
2010-09-12 16:35:25 +02:00
|
|
|
/* Perform initialization of the paging source device (if necessary) */
|
2010-09-08 19:38:44 +02:00
|
|
|
|
2010-09-09 00:06:38 +02:00
|
|
|
lpc313x_initsrc();
|
2010-09-08 19:38:44 +02:00
|
|
|
|
|
|
|
/* Create an offset into the binary image that corresponds to the
|
|
|
|
* virtual address. File offset 0 corresponds to PG_LOCKED_VBASE.
|
|
|
|
*/
|
|
|
|
|
2010-09-11 03:58:26 +02:00
|
|
|
offset = (off_t)tcb->xcp.far - PG_LOCKED_VBASE;
|
2010-09-08 19:38:44 +02:00
|
|
|
|
|
|
|
/* Seek to that position */
|
|
|
|
|
|
|
|
pos = lseek(g_pgsrc.fd, offset, SEEK_SET);
|
|
|
|
DEBUGASSERT(pos != (off_t)-1);
|
|
|
|
|
|
|
|
/* And read the page data from that offset */
|
|
|
|
|
|
|
|
nbytes = read(g_pgsrc.fd, vpage, PAGESIZE);
|
|
|
|
DEBUGASSERT(nbytes == PAGESIZE);
|
|
|
|
return OK;
|
|
|
|
|
2010-09-12 04:22:13 +02:00
|
|
|
#elif defined(CONFIG_PAGING_M25PX) || defined(CONFIG_PAGING_AT45DB) /* !CONFIG_PAGING_BINPATH */
|
2010-09-11 03:58:26 +02:00
|
|
|
|
2010-09-12 16:35:25 +02:00
|
|
|
/* Perform initialization of the paging source device (if necessary) */
|
2010-09-11 03:58:26 +02:00
|
|
|
|
|
|
|
lpc313x_initsrc();
|
|
|
|
|
|
|
|
/* Create an offset into the binary image that corresponds to the
|
|
|
|
* virtual address. File offset 0 corresponds to PG_LOCKED_VBASE.
|
|
|
|
*/
|
|
|
|
|
2010-09-12 04:22:13 +02:00
|
|
|
offset = (off_t)tcb->xcp.far - PG_LOCKED_VBASE + CONFIG_PAGING_BINOFFSET;
|
2010-09-11 03:58:26 +02:00
|
|
|
|
|
|
|
/* Read the page at the correct offset into the SPI FLASH device */
|
|
|
|
|
|
|
|
nbytes = MTD_READ(g_pgsrc.mtd, offset, PAGESIZE, (FAR uint8_t *)vpage);
|
|
|
|
DEBUGASSERT(nbytes == PAGESIZE);
|
|
|
|
return OK;
|
|
|
|
|
2010-09-12 04:22:13 +02:00
|
|
|
#else /* !CONFIG_PAGING_BINPATH && !CONFIG_PAGING_M25PX && !CONFIG_PAGING_AT45DB */
|
2010-09-08 19:38:44 +02:00
|
|
|
|
2010-08-17 21:28:51 +02:00
|
|
|
# warning "Not implemented"
|
|
|
|
return -ENOSYS;
|
2010-09-08 19:38:44 +02:00
|
|
|
|
2010-09-12 04:22:13 +02:00
|
|
|
#endif /* !CONFIG_PAGING_BINPATH && !CONFIG_PAGING_M25PX && !CONFIG_PAGING_AT45DB */
|
2010-08-17 21:28:51 +02:00
|
|
|
}
|
2010-09-08 19:38:44 +02:00
|
|
|
|
2010-09-11 03:58:26 +02:00
|
|
|
#else /* CONFIG_PAGING_BLOCKINGFILL */
|
2010-09-08 19:38:44 +02:00
|
|
|
|
|
|
|
/* Version 2: Supports non-blocking, asynchronous fill operations */
|
|
|
|
|
2010-08-17 21:28:51 +02:00
|
|
|
int up_fillpage(FAR _TCB *tcb, FAR void *vpage, up_pgcallback_t pg_callback)
|
|
|
|
{
|
2010-09-12 16:35:25 +02:00
|
|
|
pglldbg("TCB: %p vpage: %d far: %08x\n", tcb, vpage, tcb->xcp.far);
|
2010-09-08 19:38:44 +02:00
|
|
|
DEBUGASSERT(tcb->xcp.far >= PG_PAGED_VBASE && tcb->xcp.far < PG_PAGED_VEND);
|
|
|
|
|
2010-09-11 03:58:26 +02:00
|
|
|
#if defined(CONFIG_PAGING_BINPATH)
|
2010-09-08 19:38:44 +02:00
|
|
|
# error "File system-based paging must always be implemented with blocking calls"
|
2010-09-12 04:22:13 +02:00
|
|
|
#elif defined(CONFIG_PAGING_M25PX) || defined(CONFIG_PAGING_AT45DB)
|
2010-09-11 03:58:26 +02:00
|
|
|
# error "SPI FLASH paging must always be implemented with blocking calls"
|
2010-09-08 19:38:44 +02:00
|
|
|
#else
|
|
|
|
# warning "Not implemented"
|
|
|
|
#endif
|
|
|
|
|
2010-08-17 21:28:51 +02:00
|
|
|
return -ENOSYS;
|
|
|
|
}
|
2010-09-08 19:38:44 +02:00
|
|
|
|
|
|
|
#endif /* CONFIG_PAGING_BLOCKINGFILL */
|
2010-08-17 21:28:51 +02:00
|
|
|
|
2010-09-02 22:52:55 +02:00
|
|
|
/************************************************************************************
|
|
|
|
* Name: lpc313x_pginitialize
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Set up mass storage device to support on demand paging.
|
|
|
|
*
|
|
|
|
************************************************************************************/
|
|
|
|
|
|
|
|
void weak_function lpc313x_pginitialize(void)
|
|
|
|
{
|
|
|
|
/* This initialization does nothing in this example setup. But this function is
|
|
|
|
* where you might, for example:
|
|
|
|
*
|
|
|
|
* - Initialize and configure a mass storage device to support on-demand paging.
|
|
|
|
* This might be, perhaps an SD card or NAND memory. An SPI FLASH would probably
|
|
|
|
* already have been configured by lpc313x_spiinitialize(void);
|
|
|
|
* - Set up resources to support up_fillpage() operation. For example, perhaps the
|
|
|
|
* the text image is stored in a named binary file. In this case, the virtual
|
|
|
|
* text addresses might map to offsets into that file.
|
|
|
|
* - Do whatever else is necessary to make up_fillpage() ready for the first time
|
|
|
|
* that it is called.
|
2010-09-11 03:58:26 +02:00
|
|
|
*
|
2010-09-12 16:35:25 +02:00
|
|
|
* In reality, however, this function is not very useful: This function is called
|
|
|
|
* from a low level (before os_start() is even called), it may not be possible to
|
|
|
|
* perform file system operations or even to get debug output yet. Therefore,
|
|
|
|
* to keep life simple, initialization will be deferred in all cases until the first
|
|
|
|
* time that up_fillpage() is called.
|
2010-09-11 03:58:26 +02:00
|
|
|
*/
|
2010-09-02 22:52:55 +02:00
|
|
|
}
|
|
|
|
|
2010-08-17 21:28:51 +02:00
|
|
|
#endif /* CONFIG_PAGING */
|