Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
6e353e68
R
rt-thread
项目概览
BaiXuePrincess
/
rt-thread
与 Fork 源项目一致
Fork自
RT-Thread / rt-thread
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
rt-thread
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
6e353e68
编写于
5月 29, 2019
作者:
B
Bernard Xiong
提交者:
GitHub
5月 29, 2019
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #2738 from armink/fix_drivers
Fix drivers
上级
c45f2f4c
74874fea
变更
20
隐藏空白更改
内联
并排
Showing
20 changed file
with
62 addition
and
2257 deletion
+62
-2257
bsp/allwinner_tina/drivers/spi/drv_spi_flash.c
bsp/allwinner_tina/drivers/spi/drv_spi_flash.c
+0
-10
bsp/gd32450z-eval/drivers/drv_spi_flash.c
bsp/gd32450z-eval/drivers/drv_spi_flash.c
+0
-16
bsp/nuvoton_m487/.config
bsp/nuvoton_m487/.config
+39
-19
bsp/nuvoton_m487/driver/drv_spiflash.c
bsp/nuvoton_m487/driver/drv_spiflash.c
+5
-11
bsp/nuvoton_m487/rtconfig.h
bsp/nuvoton_m487/rtconfig.h
+13
-4
components/drivers/Kconfig
components/drivers/Kconfig
+3
-8
components/drivers/i2c/fm24clxx.c
components/drivers/i2c/fm24clxx.c
+0
-160
components/drivers/i2c/fm24clxx.h
components/drivers/i2c/fm24clxx.h
+0
-26
components/drivers/spi/SConscript
components/drivers/spi/SConscript
+0
-15
components/drivers/spi/device_driver_list.txt
components/drivers/spi/device_driver_list.txt
+2
-8
components/drivers/spi/spi_flash_at45dbxx.c
components/drivers/spi/spi_flash_at45dbxx.c
+0
-433
components/drivers/spi/spi_flash_at45dbxx.h
components/drivers/spi/spi_flash_at45dbxx.h
+0
-27
components/drivers/spi/spi_flash_gd.c
components/drivers/spi/spi_flash_gd.c
+0
-347
components/drivers/spi/spi_flash_gd.h
components/drivers/spi/spi_flash_gd.h
+0
-18
components/drivers/spi/spi_flash_sst25vfxx.c
components/drivers/spi/spi_flash_sst25vfxx.c
+0
-358
components/drivers/spi/spi_flash_sst25vfxx.h
components/drivers/spi/spi_flash_sst25vfxx.h
+0
-28
components/drivers/spi/spi_flash_w25qxx.c
components/drivers/spi/spi_flash_w25qxx.c
+0
-393
components/drivers/spi/spi_flash_w25qxx.h
components/drivers/spi/spi_flash_w25qxx.h
+0
-20
components/drivers/spi/spi_flash_w25qxx_mtd.c
components/drivers/spi/spi_flash_w25qxx_mtd.c
+0
-336
components/drivers/spi/spi_flash_w25qxx_mtd.h
components/drivers/spi/spi_flash_w25qxx_mtd.h
+0
-20
未找到文件。
bsp/allwinner_tina/drivers/spi/drv_spi_flash.c
浏览文件 @
6e353e68
...
...
@@ -63,16 +63,6 @@ int rt_hw_spi_flash_with_sfud_init(void)
}
INIT_PREV_EXPORT
(
rt_hw_spi_flash_with_sfud_init
);
#elif defined(RT_USING_W25QXX)
#include "spi_flash_w25qxx.h"
int
rt_hw_spi_flash_init
(
void
)
{
DEBUG_PRINTF
(
"%s -> %d
\n
"
,
__FUNCTION__
,
__LINE__
);
return
w25qxx_init
(
SPI_FLASH_CHIP
,
SPI_FLASH_DEVICE_NAME
);
}
INIT_DEVICE_EXPORT
(
rt_hw_spi_flash_init
);
#endif
#endif
\ No newline at end of file
bsp/gd32450z-eval/drivers/drv_spi_flash.c
浏览文件 @
6e353e68
...
...
@@ -20,17 +20,9 @@
#include "spi_flash_sfud.h"
#endif
#ifdef RT_USING_W25QXX
#include "spi_flash_w25qxx.h"
#endif
#include <rthw.h>
#include <finsh.h>
#if defined(RT_USING_SFUD) && defined(RT_USING_W25QXX)
#error "RT_USING_SFUD and RT_USING_W25QXX only need one"
#endif
#define SPI_PERIPH SPI5
#define SPI_BUS_NAME "spi5"
#define SPI_FLASH_DEVICE_NAME "spi50"
...
...
@@ -95,11 +87,3 @@ static int rt_hw_spi_flash_with_sfud_init(void)
}
INIT_COMPONENT_EXPORT
(
rt_hw_spi_flash_with_sfud_init
)
#endif
#ifdef RT_USING_W25QXX
static
int
rt_hw_spi_flash_init
(
void
)
{
return
w25qxx_init
(
SPI_FLASH_CHIP
,
SPI_FLASH_DEVICE_NAME
);
}
INIT_COMPONENT_EXPORT
(
rt_hw_spi_flash_init
)
#endif
bsp/nuvoton_m487/.config
浏览文件 @
6e353e68
...
...
@@ -64,7 +64,8 @@ CONFIG_RT_USING_DEVICE=y
CONFIG_RT_USING_CONSOLE
=
y
CONFIG_RT_CONSOLEBUF_SIZE
=
128
CONFIG_RT_CONSOLE_DEVICE_NAME
=
"uart0"
CONFIG_RT_VER_NUM
=
0
x40001
CONFIG_RT_VER_NUM
=
0
x40002
# CONFIG_RT_USING_CPU_FFS is not set
# CONFIG_ARCH_CPU_STACK_GROWS_UPWARD is not set
#
...
...
@@ -137,6 +138,7 @@ CONFIG_RT_USING_DFS_DEVFS=y
#
CONFIG_RT_USING_DEVICE_IPC
=
y
CONFIG_RT_PIPE_BUFSZ
=
64
# CONFIG_RT_USING_SYSTEM_WORKQUEUE is not set
CONFIG_RT_USING_SERIAL
=
y
CONFIG_RT_SERIAL_USING_DMA
=
y
CONFIG_RT_SERIAL_RB_BUFSZ
=
64
...
...
@@ -156,15 +158,22 @@ CONFIG_RT_SERIAL_RB_BUFSZ=64
CONFIG_RT_USING_SPI
=
y
# CONFIG_RT_USING_QSPI is not set
# CONFIG_RT_USING_SPI_MSD is not set
# CONFIG_RT_USING_SFUD is not set
CONFIG_RT_USING_W25QXX
=
y
# CONFIG_RT_USING_GD is not set
CONFIG_RT_USING_SFUD
=
y
CONFIG_RT_SFUD_USING_SFDP
=
y
CONFIG_RT_SFUD_USING_FLASH_INFO_TABLE
=
y
# CONFIG_RT_SFUD_USING_QSPI is not set
# CONFIG_RT_DEBUG_SFUD is not set
# CONFIG_RT_USING_ENC28J60 is not set
# CONFIG_RT_USING_SPI_WIFI is not set
# CONFIG_RT_USING_WDT is not set
# CONFIG_RT_USING_AUDIO is not set
# CONFIG_RT_USING_SENSOR is not set
#
# Using Hardware Crypto drivers
#
# CONFIG_RT_USING_HWCRYPTO is not set
#
# Using WiFi
#
...
...
@@ -196,6 +205,12 @@ CONFIG_RT_USING_POSIX=y
#
# CONFIG_RT_USING_SAL is not set
#
# Network interface device
#
# CONFIG_RT_USING_NETDEV is not set
CONFIG_NETDEV_USING_PING
=
y
#
# light weight TCP/IP stack
#
...
...
@@ -240,6 +255,7 @@ CONFIG_RT_LWIP_ETHTHREAD_STACKSIZE=768
CONFIG_RT_LWIP_ETHTHREAD_MBOX_SIZE
=
8
# CONFIG_RT_LWIP_REASSEMBLY_FRAG is not set
CONFIG_LWIP_NETIF_STATUS_CALLBACK
=
1
CONFIG_LWIP_NETIF_LINK_CALLBACK
=
1
CONFIG_SO_REUSE
=
1
CONFIG_LWIP_SO_RCVTIMEO
=
1
CONFIG_LWIP_SO_SNDTIMEO
=
1
...
...
@@ -248,6 +264,7 @@ CONFIG_LWIP_SO_RCVBUF=1
CONFIG_LWIP_NETIF_LOOPBACK
=
0
# CONFIG_RT_LWIP_STATS is not set
# CONFIG_RT_LWIP_USING_HW_CHECKSUM is not set
CONFIG_RT_LWIP_USING_PING
=
y
# CONFIG_RT_LWIP_DEBUG is not set
#
...
...
@@ -269,7 +286,6 @@ CONFIG_LWIP_NETIF_LOOPBACK=0
#
# Utilities
#
# CONFIG_RT_USING_LOGTRACE is not set
# CONFIG_RT_USING_RYM is not set
# CONFIG_RT_USING_ULOG is not set
# CONFIG_RT_USING_UTEST is not set
...
...
@@ -311,6 +327,7 @@ CONFIG_LWIP_NETIF_LOOPBACK=0
# CONFIG_PKG_USING_NOPOLL is not set
# CONFIG_PKG_USING_NETUTILS is not set
# CONFIG_PKG_USING_AT_DEVICE is not set
# CONFIG_PKG_USING_ATSRV_SOCKET is not set
# CONFIG_PKG_USING_WIZNET is not set
#
...
...
@@ -323,6 +340,9 @@ CONFIG_LWIP_NETIF_LOOPBACK=0
# CONFIG_PKG_USING_TENCENT_IOTKIT is not set
# CONFIG_PKG_USING_NIMBLE is not set
# CONFIG_PKG_USING_OTA_DOWNLOADER is not set
# CONFIG_PKG_USING_IPMSG is not set
# CONFIG_PKG_USING_LSSDP is not set
# CONFIG_PKG_USING_AIRKISS_OPEN is not set
#
# security packages
...
...
@@ -343,6 +363,7 @@ CONFIG_LWIP_NETIF_LOOPBACK=0
#
# CONFIG_PKG_USING_OPENMV is not set
# CONFIG_PKG_USING_MUPDF is not set
# CONFIG_PKG_USING_STEMWIN is not set
#
# tools packages
...
...
@@ -371,35 +392,32 @@ CONFIG_LWIP_NETIF_LOOPBACK=0
# CONFIG_PKG_USING_CMSIS is not set
# CONFIG_PKG_USING_DFS_YAFFS is not set
# CONFIG_PKG_USING_LITTLEFS is not set
# CONFIG_PKG_USING_THREAD_POOL is not set
#
# peripheral libraries and drivers
#
#
# sensors drivers
#
# CONFIG_PKG_USING_LSM6DSL is not set
# CONFIG_PKG_USING_LPS22HB is not set
# CONFIG_PKG_USING_HTS221 is not set
# CONFIG_PKG_USING_LSM303AGR is not set
# CONFIG_PKG_USING_BME280 is not set
# CONFIG_PKG_USING_BMA400 is not set
# CONFIG_PKG_USING_BMI160_BMX160 is not set
# CONFIG_PKG_USING_SPL0601 is not set
# CONFIG_PKG_USING_SENSORS_DRIVERS is not set
# CONFIG_PKG_USING_REALTEK_AMEBA is not set
# CONFIG_PKG_USING_SHT2X is not set
# CONFIG_PKG_USING_AHT10 is not set
# CONFIG_PKG_USING_AP3216C is not set
# CONFIG_PKG_USING_STM32_SDIO is not set
# CONFIG_PKG_USING_ICM20608 is not set
# CONFIG_PKG_USING_U8G2 is not set
# CONFIG_PKG_USING_BUTTON is not set
# CONFIG_PKG_USING_MPU6XXX is not set
# CONFIG_PKG_USING_PCF8574 is not set
# CONFIG_PKG_USING_SX12XX is not set
# CONFIG_PKG_USING_SIGNAL_LED is not set
# CONFIG_PKG_USING_LEDBLINK is not set
# CONFIG_PKG_USING_WM_LIBRARIES is not set
# CONFIG_PKG_USING_KENDRYTE_SDK is not set
# CONFIG_PKG_USING_INFRARED is not set
# CONFIG_PKG_USING_ROSSERIAL is not set
# CONFIG_PKG_USING_AT24CXX is not set
# CONFIG_PKG_USING_MOTIONDRIVER2RTT is not set
# CONFIG_PKG_USING_AD7746 is not set
# CONFIG_PKG_USING_PCA9685 is not set
# CONFIG_PKG_USING_I2C_TOOLS is not set
#
# miscellaneous packages
...
...
@@ -415,6 +433,7 @@ CONFIG_LWIP_NETIF_LOOPBACK=0
# CONFIG_PKG_USING_DSTR is not set
# CONFIG_PKG_USING_TINYFRAME is not set
# CONFIG_PKG_USING_KENDRYTE_DEMO is not set
# CONFIG_PKG_USING_DIGITALCTRL is not set
#
# samples: kernel and components samples
...
...
@@ -425,3 +444,4 @@ CONFIG_LWIP_NETIF_LOOPBACK=0
# CONFIG_PKG_USING_PERIPHERAL_SAMPLES is not set
# CONFIG_PKG_USING_HELLO is not set
# CONFIG_PKG_USING_VI is not set
# CONFIG_PKG_USING_NNOM is not set
bsp/nuvoton_m487/driver/drv_spiflash.c
浏览文件 @
6e353e68
...
...
@@ -11,11 +11,9 @@
#include <rtdevice.h>
#ifdef RT_USING_SPI
#if defined(RT_USING_W25QXX) || defined(RT_USING_SFUD)
#if defined(RT_USING_SFUD)
static
struct
rt_spi_device
spi_device
;
#ifdef RT_USING_W25QXX
#include "spi_flash_w25qxx.h"
#elif defined(RT_USING_SFUD)
#include "spi_flash.h"
#include "spi_flash_sfud.h"
#endif
...
...
@@ -25,11 +23,7 @@ static int rt_hw_spi_flash_init(void)
{
rt_spi_bus_attach_device
(
&
spi_device
,
"qspi01"
,
"qspi0"
,
RT_NULL
);
#ifdef RT_USING_W25QXX
return
w25qxx_init
(
"flash0"
,
"qspi01"
);
#elif defined(RT_USING_SFUD)
#if defined(RT_USING_SFUD)
if
(
rt_sfud_flash_probe
(
"flash0"
,
"qspi01"
)
==
RT_NULL
)
{
...
...
@@ -40,6 +34,6 @@ static int rt_hw_spi_flash_init(void)
}
INIT_COMPONENT_EXPORT
(
rt_hw_spi_flash_init
);
#endif
#endif
#endif
/* RT_USING_SPI */
bsp/nuvoton_m487/rtconfig.h
浏览文件 @
6e353e68
...
...
@@ -37,7 +37,7 @@
#define RT_USING_CONSOLE
#define RT_CONSOLEBUF_SIZE 128
#define RT_CONSOLE_DEVICE_NAME "uart0"
#define RT_VER_NUM 0x4000
1
#define RT_VER_NUM 0x4000
2
/* RT-Thread Components */
...
...
@@ -93,7 +93,12 @@
#define RT_SERIAL_USING_DMA
#define RT_SERIAL_RB_BUFSZ 64
#define RT_USING_SPI
#define RT_USING_W25QXX
#define RT_USING_SFUD
#define RT_SFUD_USING_SFDP
#define RT_SFUD_USING_FLASH_INFO_TABLE
/* Using Hardware Crypto drivers */
/* Using WiFi */
...
...
@@ -111,6 +116,10 @@
/* Socket abstraction layer */
/* Network interface device */
#define NETDEV_USING_PING
/* light weight TCP/IP stack */
#define RT_USING_LWIP
...
...
@@ -145,11 +154,13 @@
#define RT_LWIP_ETHTHREAD_STACKSIZE 768
#define RT_LWIP_ETHTHREAD_MBOX_SIZE 8
#define LWIP_NETIF_STATUS_CALLBACK 1
#define LWIP_NETIF_LINK_CALLBACK 1
#define SO_REUSE 1
#define LWIP_SO_RCVTIMEO 1
#define LWIP_SO_SNDTIMEO 1
#define LWIP_SO_RCVBUF 1
#define LWIP_NETIF_LOOPBACK 0
#define RT_LWIP_USING_PING
/* Modbus master and slave stack */
...
...
@@ -196,8 +207,6 @@
/* peripheral libraries and drivers */
/* sensors drivers */
/* miscellaneous packages */
...
...
components/drivers/Kconfig
浏览文件 @
6e353e68
...
...
@@ -212,6 +212,9 @@ config RT_USING_SPI
config RT_USING_SFUD
bool "Using Serial Flash Universal Driver"
default n
help
An using JEDEC's SFDP standard serial (SPI) flash universal driver library
if RT_USING_SFUD
config RT_SFUD_USING_SFDP
bool "Using auto probe flash JEDEC SFDP parameter"
...
...
@@ -231,14 +234,6 @@ config RT_USING_SPI
default n
endif
config RT_USING_W25QXX
bool "Using W25QXX SPI NorFlash"
default n
config RT_USING_GD
bool "Using GD SPI NorFlash"
default n
config RT_USING_ENC28J60
bool "Using ENC28J60 SPI Ethernet network interface"
select RT_USING_LWIP
...
...
components/drivers/i2c/fm24clxx.c
已删除
100644 → 0
浏览文件 @
c45f2f4c
/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2017-07-14 aubr.cool 1st version
*/
#include <rtthread.h>
#include <rtdevice.h>
#include "fm24clxx.h"
struct
fm24clxx_device
{
struct
rt_device
parent
;
struct
rt_i2c_bus_device
*
bus
;
};
/* RT-Thread device interface */
static
rt_err_t
fm24clxx_init
(
rt_device_t
dev
)
{
return
RT_EOK
;
}
static
rt_err_t
fm24clxx_open
(
rt_device_t
dev
,
rt_uint16_t
oflag
)
{
return
RT_EOK
;
}
static
rt_err_t
fm24clxx_close
(
rt_device_t
dev
)
{
return
RT_EOK
;
}
static
rt_err_t
fm24clxx_control
(
rt_device_t
dev
,
int
cmd
,
void
*
args
)
{
return
RT_EOK
;
}
static
rt_size_t
fm24clxx_read
(
rt_device_t
dev
,
rt_off_t
pos
,
void
*
buffer
,
rt_size_t
size
)
{
struct
fm24clxx_device
*
fm24clxx
;
const
struct
fm24clxx_config
*
cfg
;
struct
rt_i2c_msg
msg
[
2
];
rt_uint8_t
mem_addr
[
2
]
=
{
0
,};
rt_size_t
ret
=
0
;
RT_ASSERT
(
dev
!=
0
);
fm24clxx
=
(
struct
fm24clxx_device
*
)
dev
;
RT_ASSERT
(
fm24clxx
->
parent
.
user_data
!=
0
);
cfg
=
(
const
struct
fm24clxx_config
*
)
fm24clxx
->
parent
.
user_data
;
if
(
pos
>
cfg
->
size
)
{
return
0
;
}
if
(
pos
+
size
>
cfg
->
size
)
{
size
=
cfg
->
size
-
pos
;
}
msg
[
0
].
addr
=
cfg
->
addr
;
msg
[
0
].
flags
=
cfg
->
flags
|
RT_I2C_WR
;
mem_addr
[
0
]
=
(
pos
>>
8
);
mem_addr
[
1
]
=
(
rt_uint8_t
)
pos
;
msg
[
0
].
buf
=
(
rt_uint8_t
*
)
mem_addr
;
msg
[
0
].
len
=
2
;
msg
[
1
].
addr
=
cfg
->
addr
;
msg
[
1
].
flags
=
cfg
->
flags
|
RT_I2C_RD
;
msg
[
1
].
buf
=
(
rt_uint8_t
*
)
buffer
;
msg
[
1
].
len
=
size
;
ret
=
rt_i2c_transfer
(
fm24clxx
->
bus
,
msg
,
2
);
return
(
ret
==
2
)
?
size
:
0
;
}
static
rt_size_t
fm24clxx_write
(
rt_device_t
dev
,
rt_off_t
pos
,
const
void
*
buffer
,
rt_size_t
size
)
{
struct
fm24clxx_device
*
fm24clxx
;
const
struct
fm24clxx_config
*
cfg
;
struct
rt_i2c_msg
msg
[
2
];
rt_uint8_t
mem_addr
[
2
]
=
{
0
,};
rt_size_t
ret
=
0
;
RT_ASSERT
(
dev
!=
0
);
fm24clxx
=
(
struct
fm24clxx_device
*
)
dev
;
RT_ASSERT
(
fm24clxx
->
parent
.
user_data
!=
0
);
cfg
=
(
const
struct
fm24clxx_config
*
)
fm24clxx
->
parent
.
user_data
;
if
(
pos
>
cfg
->
size
)
{
return
0
;
}
if
(
pos
+
size
>
cfg
->
size
)
{
size
=
cfg
->
size
-
pos
;
}
msg
[
0
].
addr
=
cfg
->
addr
;
msg
[
0
].
flags
=
cfg
->
flags
|
RT_I2C_WR
;
mem_addr
[
0
]
=
(
pos
>>
8
);
mem_addr
[
1
]
=
(
rt_uint8_t
)
pos
;
msg
[
0
].
buf
=
(
rt_uint8_t
*
)
mem_addr
;
msg
[
0
].
len
=
2
;
msg
[
1
].
addr
=
cfg
->
addr
;
msg
[
1
].
flags
=
cfg
->
flags
|
RT_I2C_WR
|
RT_I2C_NO_START
;
msg
[
1
].
buf
=
(
rt_uint8_t
*
)
buffer
;
msg
[
1
].
len
=
size
;
ret
=
rt_i2c_transfer
(
fm24clxx
->
bus
,
msg
,
2
);
return
(
ret
==
2
)
?
size
:
0
;
}
#ifdef RT_USING_DEVICE_OPS
const
static
struct
rt_device
fm24clxx_ops
=
{
fm24clxx_init
,
fm24clxx_open
,
fm24clxx_close
,
fm24clxx_read
,
fm24clxx_write
,
fm24clxx_control
};
#endif
rt_err_t
fm24clxx_register
(
const
char
*
fm_device_name
,
const
char
*
i2c_bus
,
void
*
user_data
)
{
static
struct
fm24clxx_device
fm24clxx_drv
;
struct
rt_i2c_bus_device
*
bus
;
bus
=
rt_i2c_bus_device_find
(
i2c_bus
);
if
(
bus
==
RT_NULL
)
{
return
RT_ENOSYS
;
}
fm24clxx_drv
.
bus
=
bus
;
fm24clxx_drv
.
parent
.
type
=
RT_Device_Class_Block
;
#ifdef RT_USING_DEVICE_OPS
fm24clxx_drv
.
parent
.
ops
=
&
fm24clxx_ops
;
#else
fm24clxx_drv
.
parent
.
init
=
fm24clxx_init
;
fm24clxx_drv
.
parent
.
open
=
fm24clxx_open
;
fm24clxx_drv
.
parent
.
close
=
fm24clxx_close
;
fm24clxx_drv
.
parent
.
read
=
fm24clxx_read
;
fm24clxx_drv
.
parent
.
write
=
fm24clxx_write
;
fm24clxx_drv
.
parent
.
control
=
fm24clxx_control
;
#endif
fm24clxx_drv
.
parent
.
user_data
=
user_data
;
return
rt_device_register
(
&
fm24clxx_drv
.
parent
,
fm_device_name
,
RT_DEVICE_FLAG_RDWR
);
}
\ No newline at end of file
components/drivers/i2c/fm24clxx.h
已删除
100644 → 0
浏览文件 @
c45f2f4c
/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2017-07-14 aubr.cool 1st version
*/
#ifndef __FM24CLXX_H__
#define __FM24CLXX_H__
#include <rtthread.h>
struct
fm24clxx_config
{
rt_uint32_t
size
;
rt_uint16_t
addr
;
rt_uint16_t
flags
;
};
extern
rt_err_t
fm24clxx_register
(
const
char
*
e2m_device_name
,
const
char
*
i2c_bus
,
void
*
user_data
);
#endif
/*__FM24CLXX_H__*/
\ No newline at end of file
components/drivers/spi/SConscript
浏览文件 @
6e353e68
...
...
@@ -14,24 +14,9 @@ src_device = []
if
GetDepend
(
'RT_USING_SPI_WIFI'
):
src_device
+=
[
'spi_wifi_rw009.c'
]
if
GetDepend
(
'RT_USING_W25QXX'
):
src_device
+=
[
'spi_flash_w25qxx.c'
]
if
GetDepend
(
'RT_USING_W25QXX_MTD'
):
src_device
+=
[
'spi_flash_w25qxx_mtd.c'
]
if
GetDepend
(
'RT_USING_ENC28J60'
):
src_device
+=
[
'enc28j60.c'
]
if
GetDepend
(
'RT_USING_AT45DBXX'
):
src_device
+=
[
'spi_flash_at45dbxx.c'
]
if
GetDepend
(
'RT_USING_SST25VFXX'
):
src_device
+=
[
'spi_flash_sst25vfxx.c'
]
if
GetDepend
(
'RT_USING_GD'
):
src_device
+=
[
'spi_flash_gd.c'
]
if
GetDepend
(
'RT_USING_SPI_MSD'
):
src_device
+=
[
'spi_msd.c'
]
...
...
components/drivers/spi/device_driver_list.txt
浏览文件 @
6e353e68
...
...
@@ -5,11 +5,5 @@ http://www.rt-thread.com/
enc28j60.c/enc28j60.h
http://www.microchip.com/
spi_flash_at45dbxx.c/spi_flash_at45dbxx.h
http://www.atmel.com/
spi_flash_sst25vfxx.c/spi_flash_sst25vfxx.h
http://www.microchip.com/
spi_flash_w25qxx.c/spi_flash_w25qxx.h
http://www.winbond.com/
spi_flash_sfud: Serial Flash Universal Driver
https://github.com/armink/SFUD
\ No newline at end of file
components/drivers/spi/spi_flash_at45dbxx.c
已删除
100644 → 0
浏览文件 @
c45f2f4c
/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2011-12-16 aozima the first version
*/
#include <stdint.h>
#include "spi_flash_at45dbxx.h"
#define FLASH_DEBUG
#define DMA_BUFFER_SIZE 512
#ifdef FLASH_DEBUG
#define FLASH_TRACE rt_kprintf
#else
#define FLASH_TRACE(...)
#endif
/**< #ifdef FLASH_DEBUG */
/* JEDEC Manufacturer’s ID */
#define MF_ID (0x1F)
/* atmel */
#define DENSITY_CODE_011D (0x02)
/* AT45DB011D Density Code : 00010 = 1-Mbit */
#define DENSITY_CODE_021D (0x03)
/* AT45DB021D Density Code : 00011 = 2-Mbit */
#define DENSITY_CODE_041D (0x04)
/* AT45DB041D Density Code : 00100 = 4-Mbit */
#define DENSITY_CODE_081D (0x05)
/* AT45DB081D Density Code : 00101 = 8-Mbit */
#define DENSITY_CODE_161D (0x06)
/* AT45DB161D Density Code : 00110 = 16-Mbit */
#define DENSITY_CODE_321D (0x07)
/* AT45DB321D Density Code : 00111 = 32-Mbit */
#define DENSITY_CODE_642D (0x08)
/* AT45DB642D Density Code : 01000 = 64-Mbit */
struct
JEDEC_ID
{
uint8_t
manufacturer_id
;
/* Manufacturer ID */
uint8_t
density_code
:
5
;
/* Density Code */
uint8_t
family_code
:
3
;
/* Family Code */
uint8_t
version_code
:
5
;
/* Product Version Code */
uint8_t
mlc_code
:
3
;
/* MLC Code */
uint8_t
byte_count
;
/* Byte Count */
};
#define AT45DB_BUFFER_1_WRITE 0x84
#define AT45DB_BUFFER_2_WRITE 0x87
#define AT45DB_BUFFER_1_READ 0xD4
#define AT45DB_BUFFER_2_READ 0xD6
#define AT45DB_B1_TO_MM_PAGE_PROG_WITH_ERASE 0x83
#define AT45DB_B2_TO_MM_PAGE_PROG_WITH_ERASE 0x86
#define AT45DB_MM_PAGE_TO_B1_XFER 0x53
#define AT45DB_MM_PAGE_TO_B2_XFER 0x55
#define AT45DB_PAGE_ERASE 0x81
#define AT45DB_SECTOR_ERASE 0x7C
#define AT45DB_READ_STATE_REGISTER 0xD7
#define AT45DB_MM_PAGE_READ 0xD2
#define AT45DB_MM_PAGE_PROG_THRU_BUFFER1 0x82
#define AT45DB_CMD_JEDEC_ID 0x9F
static
struct
spi_flash_at45dbxx
spi_flash_at45dbxx
;
/*****************************************************************************/
/*Status Register Format: */
/* ------------------------------------------------------------------------- */
/* | bit7 | bit6 | bit5 | bit4 | bit3 | bit2 | bit1 | bit0 | */
/* |--------|--------|--------|--------|--------|--------|--------|--------| */
/* |RDY/BUSY| COMP | device density | X | X | */
/* ------------------------------------------------------------------------- */
/* 0:busy | | AT45DB041:0111 | protect|page size */
/* 1:ready | | AT45DB161:1011 | */
/* --------------------------------------------------------------------------*/
/*****************************************************************************/
static
uint8_t
AT45DB_StatusRegisterRead
(
void
)
{
return
rt_spi_sendrecv8
(
spi_flash_at45dbxx
.
rt_spi_device
,
AT45DB_READ_STATE_REGISTER
);
}
static
void
wait_busy
(
void
)
{
uint16_t
i
=
0
;
while
(
i
++
<
10000
)
{
if
(
AT45DB_StatusRegisterRead
()
&
0x80
)
{
return
;
}
}
FLASH_TRACE
(
"
\r\n
SPI_FLASH timeout!!!
\r\n
"
);
}
/* RT-Thread Device Driver Interface */
static
rt_err_t
AT45DB_flash_init
(
rt_device_t
dev
)
{
return
RT_EOK
;
}
static
rt_err_t
AT45DB_flash_open
(
rt_device_t
dev
,
rt_uint16_t
oflag
)
{
return
RT_EOK
;
}
static
rt_err_t
AT45DB_flash_close
(
rt_device_t
dev
)
{
return
RT_EOK
;
}
static
rt_err_t
AT45DB_flash_control
(
rt_device_t
dev
,
int
cmd
,
void
*
args
)
{
RT_ASSERT
(
dev
!=
RT_NULL
);
if
(
cmd
==
RT_DEVICE_CTRL_BLK_GETGEOME
)
{
struct
rt_device_blk_geometry
*
geometry
;
geometry
=
(
struct
rt_device_blk_geometry
*
)
args
;
if
(
geometry
==
RT_NULL
)
return
-
RT_ERROR
;
geometry
->
bytes_per_sector
=
512
;
geometry
->
sector_count
=
4096
;
geometry
->
block_size
=
4096
;
/* block erase: 4k */
}
return
RT_EOK
;
}
static
rt_size_t
AT45DB_flash_read_page_256
(
rt_device_t
dev
,
rt_off_t
pos
,
void
*
buffer
,
rt_size_t
size
)
{
uint32_t
index
,
nr
;
uint8_t
*
read_buffer
=
buffer
;
uint32_t
page
=
pos
;
nr
=
size
;
for
(
index
=
0
;
index
<
nr
;
index
++
)
{
uint8_t
send_buffer
[
8
];
uint32_t
i
;
for
(
i
=
0
;
i
<
sizeof
(
send_buffer
);
i
++
)
{
send_buffer
[
i
]
=
0
;
}
send_buffer
[
0
]
=
AT45DB_MM_PAGE_READ
;
send_buffer
[
1
]
=
(
uint8_t
)(
page
>>
7
);
send_buffer
[
2
]
=
(
uint8_t
)(
page
<<
1
);
rt_spi_send_then_recv
(
spi_flash_at45dbxx
.
rt_spi_device
,
send_buffer
,
8
,
read_buffer
,
256
);
read_buffer
+=
256
;
page
++
;
}
return
size
;
}
static
rt_size_t
AT45DB_flash_read_page_512
(
rt_device_t
dev
,
rt_off_t
pos
,
void
*
buffer
,
rt_size_t
size
)
{
uint32_t
index
,
nr
;
uint8_t
*
read_buffer
=
buffer
;
uint32_t
page
=
pos
;
nr
=
size
;
for
(
index
=
0
;
index
<
nr
;
index
++
)
{
uint8_t
send_buffer
[
8
];
uint32_t
i
;
for
(
i
=
0
;
i
<
sizeof
(
send_buffer
);
i
++
)
{
send_buffer
[
i
]
=
0
;
}
send_buffer
[
0
]
=
AT45DB_MM_PAGE_READ
;
send_buffer
[
1
]
=
(
uint8_t
)(
page
>>
6
);
send_buffer
[
2
]
=
(
uint8_t
)(
page
<<
2
);
rt_spi_send_then_recv
(
spi_flash_at45dbxx
.
rt_spi_device
,
send_buffer
,
8
,
read_buffer
,
512
);
read_buffer
+=
512
;
page
++
;
}
return
size
;
}
static
rt_size_t
AT45DB_flash_read_page_1024
(
rt_device_t
dev
,
rt_off_t
pos
,
void
*
buffer
,
rt_size_t
size
)
{
uint32_t
index
,
nr
;
uint8_t
*
read_buffer
=
buffer
;
uint32_t
page
=
pos
;
nr
=
size
;
for
(
index
=
0
;
index
<
nr
;
index
++
)
{
uint8_t
send_buffer
[
8
];
uint32_t
i
;
for
(
i
=
0
;
i
<
sizeof
(
send_buffer
);
i
++
)
{
send_buffer
[
i
]
=
0
;
}
send_buffer
[
0
]
=
AT45DB_MM_PAGE_READ
;
send_buffer
[
1
]
=
(
uint8_t
)(
page
>>
5
);
send_buffer
[
2
]
=
(
uint8_t
)(
page
<<
3
);
rt_spi_send_then_recv
(
spi_flash_at45dbxx
.
rt_spi_device
,
send_buffer
,
8
,
read_buffer
,
1024
);
read_buffer
+=
1024
;
page
++
;
}
return
size
;
}
static
rt_size_t
AT45DB_flash_write_page_256
(
rt_device_t
dev
,
rt_off_t
pos
,
const
void
*
buffer
,
rt_size_t
size
)
{
rt_uint32_t
index
,
nr
;
const
uint8_t
*
write_buffer
=
buffer
;
uint32_t
page
=
pos
;
nr
=
size
;
for
(
index
=
0
;
index
<
nr
;
index
++
)
{
uint8_t
send_buffer
[
4
];
send_buffer
[
0
]
=
AT45DB_MM_PAGE_PROG_THRU_BUFFER1
;
send_buffer
[
1
]
=
(
uint8_t
)
(
page
>>
7
);
send_buffer
[
2
]
=
(
uint8_t
)
(
page
<<
1
);
send_buffer
[
3
]
=
0
;
rt_spi_send_then_send
(
spi_flash_at45dbxx
.
rt_spi_device
,
send_buffer
,
4
,
write_buffer
,
256
);
write_buffer
+=
256
;
page
++
;
wait_busy
();
}
return
size
;
}
static
rt_size_t
AT45DB_flash_write_page_512
(
rt_device_t
dev
,
rt_off_t
pos
,
const
void
*
buffer
,
rt_size_t
size
)
{
rt_uint32_t
index
,
nr
;
const
uint8_t
*
write_buffer
=
buffer
;
uint32_t
page
=
pos
;
nr
=
size
;
for
(
index
=
0
;
index
<
nr
;
index
++
)
{
uint8_t
send_buffer
[
4
];
send_buffer
[
0
]
=
AT45DB_MM_PAGE_PROG_THRU_BUFFER1
;
send_buffer
[
1
]
=
(
uint8_t
)
(
page
>>
6
);
send_buffer
[
2
]
=
(
uint8_t
)
(
page
<<
2
);
send_buffer
[
3
]
=
0
;
rt_spi_send_then_send
(
spi_flash_at45dbxx
.
rt_spi_device
,
send_buffer
,
4
,
write_buffer
,
512
);
write_buffer
+=
512
;
page
++
;
wait_busy
();
}
return
size
;
}
static
rt_size_t
AT45DB_flash_write_page_1024
(
rt_device_t
dev
,
rt_off_t
pos
,
const
void
*
buffer
,
rt_size_t
size
)
{
rt_uint32_t
index
,
nr
;
const
uint8_t
*
write_buffer
=
buffer
;
uint32_t
page
=
pos
;
nr
=
size
;
for
(
index
=
0
;
index
<
nr
;
index
++
)
{
uint8_t
send_buffer
[
4
];
send_buffer
[
0
]
=
AT45DB_MM_PAGE_PROG_THRU_BUFFER1
;
send_buffer
[
1
]
=
(
uint8_t
)
(
page
>>
5
);
send_buffer
[
2
]
=
(
uint8_t
)
(
page
<<
3
);
send_buffer
[
3
]
=
0
;
rt_spi_send_then_send
(
spi_flash_at45dbxx
.
rt_spi_device
,
send_buffer
,
4
,
write_buffer
,
1024
);
write_buffer
+=
1024
;
page
++
;
wait_busy
();
}
return
size
;
}
rt_err_t
at45dbxx_init
(
const
char
*
flash_device_name
,
const
char
*
spi_device_name
)
{
struct
rt_spi_device
*
rt_spi_device
;
struct
JEDEC_ID
*
JEDEC_ID
;
rt_spi_device
=
(
struct
rt_spi_device
*
)
rt_device_find
(
spi_device_name
);
if
(
rt_spi_device
==
RT_NULL
)
{
FLASH_TRACE
(
"spi device %s not found!
\r\n
"
,
spi_device_name
);
return
-
RT_ENOSYS
;
}
spi_flash_at45dbxx
.
rt_spi_device
=
rt_spi_device
;
/* config spi */
{
struct
rt_spi_configuration
cfg
;
cfg
.
data_width
=
8
;
cfg
.
mode
=
RT_SPI_MODE_0
|
RT_SPI_MSB
;
/* SPI Compatible Modes 0 and 3 */
cfg
.
max_hz
=
66000000
;
/* Atmel RapidS Serial Interface: 66MHz Maximum Clock Frequency */
rt_spi_configure
(
spi_flash_at45dbxx
.
rt_spi_device
,
&
cfg
);
}
/* read JEDEC ID */
{
uint8_t
cmd
;
uint8_t
id_recv
[
6
];
JEDEC_ID
=
(
struct
JEDEC_ID
*
)
id_recv
;
cmd
=
AT45DB_CMD_JEDEC_ID
;
rt_spi_send_then_recv
(
spi_flash_at45dbxx
.
rt_spi_device
,
&
cmd
,
1
,
id_recv
,
6
);
/**< 1FH = Atmel */
/**< 001 = Atmel DataFlash */
if
(
JEDEC_ID
->
manufacturer_id
!=
0x1F
||
JEDEC_ID
->
family_code
!=
0x01
)
{
FLASH_TRACE
(
"Manufacturer’s ID or Memory Type error!
\r\n
"
);
FLASH_TRACE
(
"JEDEC Read-ID Data : %02X %02X %02X
\r\n
"
,
id_recv
[
0
],
id_recv
[
1
],
id_recv
[
2
]);
return
-
RT_ENOSYS
;
}
if
(
JEDEC_ID
->
density_code
==
DENSITY_CODE_011D
)
{
/**< AT45DB011D Density Code : 00010 = 1-Mbit */
FLASH_TRACE
(
"AT45DB011D detection
\r\n
"
);
spi_flash_at45dbxx
.
geometry
.
bytes_per_sector
=
256
;
/* Page Erase (256 Bytes) */
spi_flash_at45dbxx
.
geometry
.
sector_count
=
512
;
/* 1-Mbit / 8 / 256 = 512 */
spi_flash_at45dbxx
.
geometry
.
block_size
=
1024
*
2
;
/* Block Erase (2-Kbytes) */
}
else
if
(
JEDEC_ID
->
density_code
==
DENSITY_CODE_021D
)
{
/**< AT45DB021D Density Code : 00011 = 2-Mbit */
FLASH_TRACE
(
"AT45DB021D detection
\r\n
"
);
spi_flash_at45dbxx
.
geometry
.
bytes_per_sector
=
256
;
/* Page Erase (256 Bytes) */
spi_flash_at45dbxx
.
geometry
.
sector_count
=
512
*
2
;
/* 2-Mbit / 8 / 256 = 1024 */
spi_flash_at45dbxx
.
geometry
.
block_size
=
1024
*
2
;
/* Block Erase (2-Kbytes) */
}
else
if
(
JEDEC_ID
->
density_code
==
DENSITY_CODE_041D
)
{
/**< AT45DB041D Density Code : 00100 = 4-Mbit */
FLASH_TRACE
(
"AT45DB041D detection
\r\n
"
);
spi_flash_at45dbxx
.
geometry
.
bytes_per_sector
=
256
;
/* Page Erase (256 Bytes) */
spi_flash_at45dbxx
.
geometry
.
sector_count
=
512
*
4
;
/* 4-Mbit / 8 / 256 = 2048 */
spi_flash_at45dbxx
.
geometry
.
block_size
=
1024
*
2
;
/* Block Erase (2-Kbytes) */
}
else
if
(
JEDEC_ID
->
density_code
==
DENSITY_CODE_081D
)
{
/**< AT45DB081D Density Code : 00101 = 8-Mbit */
FLASH_TRACE
(
"AT45DB081D detection
\r\n
"
);
spi_flash_at45dbxx
.
geometry
.
bytes_per_sector
=
256
;
/* Page Erase (256 Bytes) */
spi_flash_at45dbxx
.
geometry
.
sector_count
=
512
*
8
;
/* 8-Mbit / 8 / 256 = 4096 */
spi_flash_at45dbxx
.
geometry
.
block_size
=
1024
*
2
;
/* Block Erase (2-Kbytes) */
}
else
if
(
JEDEC_ID
->
density_code
==
DENSITY_CODE_161D
)
{
/**< AT45DB161D Density Code : 00110 = 16-Mbit */
FLASH_TRACE
(
"AT45DB161D detection
\r\n
"
);
spi_flash_at45dbxx
.
geometry
.
bytes_per_sector
=
512
;
/* Page Erase (512 Bytes) */
spi_flash_at45dbxx
.
geometry
.
sector_count
=
256
*
16
;
/* 16-Mbit / 8 / 512 = 4096 */
spi_flash_at45dbxx
.
geometry
.
block_size
=
1024
*
4
;
/* Block Erase (4-Kbytes) */
}
else
if
(
JEDEC_ID
->
density_code
==
DENSITY_CODE_321D
)
{
/**< AT45DB321D Density Code : 00111 = 32-Mbit */
FLASH_TRACE
(
"AT45DB321D detection
\r\n
"
);
spi_flash_at45dbxx
.
geometry
.
bytes_per_sector
=
512
;
/* Page Erase (512 Bytes) */
spi_flash_at45dbxx
.
geometry
.
sector_count
=
256
*
32
;
/* 32-Mbit / 8 / 512 = 8192 */
spi_flash_at45dbxx
.
geometry
.
block_size
=
1024
*
4
;
/* Block Erase (4-Kbytes) */
}
else
if
(
JEDEC_ID
->
density_code
==
DENSITY_CODE_642D
)
{
/**< AT45DB642D Density Code : 01000 = 64-Mbit */
FLASH_TRACE
(
"AT45DB642D detection
\r\n
"
);
spi_flash_at45dbxx
.
geometry
.
bytes_per_sector
=
1024
;
/* Page Erase (1 Kbyte) */
spi_flash_at45dbxx
.
geometry
.
sector_count
=
128
*
64
;
/* 64-Mbit / 8 / 1024 = 8192 */
spi_flash_at45dbxx
.
geometry
.
block_size
=
1024
*
8
;
/* Block Erase (8 Kbytes) */
}
else
{
FLASH_TRACE
(
"Memory Capacity error!
\r\n
"
);
return
-
RT_ENOSYS
;
}
}
/* register device */
spi_flash_at45dbxx
.
flash_device
.
type
=
RT_Device_Class_Block
;
spi_flash_at45dbxx
.
flash_device
.
init
=
AT45DB_flash_init
;
spi_flash_at45dbxx
.
flash_device
.
open
=
AT45DB_flash_open
;
spi_flash_at45dbxx
.
flash_device
.
close
=
AT45DB_flash_close
;
spi_flash_at45dbxx
.
flash_device
.
control
=
AT45DB_flash_control
;
if
(
JEDEC_ID
->
density_code
==
DENSITY_CODE_642D
)
{
spi_flash_at45dbxx
.
flash_device
.
read
=
AT45DB_flash_read_page_1024
;
spi_flash_at45dbxx
.
flash_device
.
write
=
AT45DB_flash_write_page_1024
;
}
else
if
(
JEDEC_ID
->
density_code
==
DENSITY_CODE_161D
||
JEDEC_ID
->
density_code
==
DENSITY_CODE_321D
)
{
spi_flash_at45dbxx
.
flash_device
.
read
=
AT45DB_flash_read_page_512
;
spi_flash_at45dbxx
.
flash_device
.
write
=
AT45DB_flash_write_page_512
;
}
else
{
spi_flash_at45dbxx
.
flash_device
.
read
=
AT45DB_flash_read_page_256
;
spi_flash_at45dbxx
.
flash_device
.
write
=
AT45DB_flash_write_page_256
;
}
/* no private */
spi_flash_at45dbxx
.
flash_device
.
user_data
=
RT_NULL
;
rt_device_register
(
&
spi_flash_at45dbxx
.
flash_device
,
flash_device_name
,
RT_DEVICE_FLAG_RDWR
|
RT_DEVICE_FLAG_STANDALONE
);
return
RT_EOK
;
}
components/drivers/spi/spi_flash_at45dbxx.h
已删除
100644 → 0
浏览文件 @
c45f2f4c
/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2011-12-16 aozima the first version
*/
#ifndef SPI_FLASH_AT45DBXX_H_INCLUDED
#define SPI_FLASH_AT45DBXX_H_INCLUDED
#include <rtthread.h>
#include <drivers/spi.h>
struct
spi_flash_at45dbxx
{
struct
rt_device
flash_device
;
struct
rt_device_blk_geometry
geometry
;
struct
rt_spi_device
*
rt_spi_device
;
};
extern
rt_err_t
at45dbxx_init
(
const
char
*
flash_device_name
,
const
char
*
spi_device_name
);
#endif // SPI_FLASH_AT45DBXX_H_INCLUDED
components/drivers/spi/spi_flash_gd.c
已删除
100644 → 0
浏览文件 @
c45f2f4c
/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2015-10-11 fullhan copy from winbond flash
*/
#include <stdint.h>
#include <rtthread.h>
#include <rtdevice.h>
#include "spi_flash.h"
#include "spi_flash_gd.h"
#define FLASH_DEBUG
#ifdef FLASH_DEBUG
#define FLASH_TRACE rt_kprintf
#else
#define FLASH_TRACE(...)
#endif
/* #ifdef FLASH_DEBUG */
#define PAGE_SIZE 4096
/* JEDEC Manufacturer's ID */
#define MF_ID (0xC8)
/* JEDEC Device ID: Memory type and Capacity */
#define MTC_GD25Q128 (0x4018)
/* command list */
#define CMD_WRSR (0x01)
/* Write Status Register */
#define CMD_PP (0x02)
/* Page Program */
#define CMD_READ (0x03)
/* Read Data */
#define CMD_WRDI (0x04)
/* Write Disable */
#define CMD_RDSR1 (0x05)
/* Read Status Register-1 */
#define CMD_WREN (0x06)
/* Write Enable */
#define CMD_FAST_READ (0x0B)
/* Fast Read */
#define CMD_ERASE_4K (0x20)
/* Sector Erase:4K */
#define CMD_RDSR2 (0x35)
/* Read Status Register-2 */
#define CMD_ERASE_32K (0x52)
/* 32KB Block Erase */
#define CMD_JEDEC_ID (0x9F)
/* Read JEDEC ID */
#define CMD_ERASE_full (0xC7)
/* Chip Erase */
#define CMD_ERASE_64K (0xD8)
/* 64KB Block Erase */
#define DUMMY (0xFF)
static
struct
spi_flash_device
spi_flash_device
;
static
void
flash_lock
(
struct
spi_flash_device
*
flash_device
)
{
rt_mutex_take
(
&
flash_device
->
lock
,
RT_WAITING_FOREVER
);
}
static
void
flash_unlock
(
struct
spi_flash_device
*
flash_device
)
{
rt_mutex_release
(
&
flash_device
->
lock
);
}
static
uint8_t
w25qxx_read_status
(
void
)
{
return
rt_spi_sendrecv8
(
spi_flash_device
.
rt_spi_device
,
CMD_RDSR1
);
}
static
void
w25qxx_wait_busy
(
void
)
{
while
(
w25qxx_read_status
()
&
(
0x01
));
}
/** \brief read [size] byte from [offset] to [buffer]
*
* \param offset uint32_t unit : byte
* \param buffer uint8_t*
* \param size uint32_t unit : byte
* \return uint32_t byte for read
*
*/
static
uint32_t
w25qxx_read
(
uint32_t
offset
,
uint8_t
*
buffer
,
uint32_t
size
)
{
uint8_t
send_buffer
[
4
];
send_buffer
[
0
]
=
CMD_WRDI
;
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
1
);
send_buffer
[
0
]
=
CMD_READ
;
send_buffer
[
1
]
=
(
uint8_t
)(
offset
>>
16
);
send_buffer
[
2
]
=
(
uint8_t
)(
offset
>>
8
);
send_buffer
[
3
]
=
(
uint8_t
)(
offset
);
rt_spi_send_then_recv
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
4
,
buffer
,
size
);
return
size
;
}
/** \brief write N page on [page]
*
* \param page_addr uint32_t unit : byte (4096 * N,1 page = 4096byte)
* \param buffer const uint8_t*
* \return uint32_t
*
*/
static
uint32_t
w25qxx_page_write
(
uint32_t
page_addr
,
const
uint8_t
*
buffer
)
{
uint32_t
index
;
uint8_t
send_buffer
[
4
];
RT_ASSERT
((
page_addr
&
0xFF
)
==
0
);
/* page addr must align to 256byte. */
send_buffer
[
0
]
=
CMD_WREN
;
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
1
);
send_buffer
[
0
]
=
CMD_ERASE_4K
;
send_buffer
[
1
]
=
(
page_addr
>>
16
);
send_buffer
[
2
]
=
(
page_addr
>>
8
);
send_buffer
[
3
]
=
(
page_addr
);
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
4
);
w25qxx_wait_busy
();
// wait erase done.
for
(
index
=
0
;
index
<
(
PAGE_SIZE
/
256
);
index
++
)
{
send_buffer
[
0
]
=
CMD_WREN
;
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
1
);
send_buffer
[
0
]
=
CMD_PP
;
send_buffer
[
1
]
=
(
uint8_t
)(
page_addr
>>
16
);
send_buffer
[
2
]
=
(
uint8_t
)(
page_addr
>>
8
);
send_buffer
[
3
]
=
(
uint8_t
)(
page_addr
);
rt_spi_send_then_send
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
4
,
buffer
,
256
);
buffer
+=
256
;
page_addr
+=
256
;
w25qxx_wait_busy
();
}
send_buffer
[
0
]
=
CMD_WRDI
;
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
1
);
return
PAGE_SIZE
;
}
/* RT-Thread device interface */
static
rt_err_t
w25qxx_flash_init
(
rt_device_t
dev
)
{
return
RT_EOK
;
}
static
rt_err_t
w25qxx_flash_open
(
rt_device_t
dev
,
rt_uint16_t
oflag
)
{
uint8_t
send_buffer
[
3
];
flash_lock
((
struct
spi_flash_device
*
)
dev
);
send_buffer
[
0
]
=
CMD_WREN
;
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
1
);
send_buffer
[
0
]
=
CMD_WRSR
;
send_buffer
[
1
]
=
0
;
send_buffer
[
2
]
=
0
;
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
3
);
w25qxx_wait_busy
();
flash_unlock
((
struct
spi_flash_device
*
)
dev
);
return
RT_EOK
;
}
static
rt_err_t
w25qxx_flash_close
(
rt_device_t
dev
)
{
return
RT_EOK
;
}
static
rt_err_t
w25qxx_flash_control
(
rt_device_t
dev
,
int
cmd
,
void
*
args
)
{
RT_ASSERT
(
dev
!=
RT_NULL
);
if
(
cmd
==
RT_DEVICE_CTRL_BLK_GETGEOME
)
{
struct
rt_device_blk_geometry
*
geometry
;
geometry
=
(
struct
rt_device_blk_geometry
*
)
args
;
if
(
geometry
==
RT_NULL
)
return
-
RT_ERROR
;
geometry
->
bytes_per_sector
=
spi_flash_device
.
geometry
.
bytes_per_sector
;
geometry
->
sector_count
=
spi_flash_device
.
geometry
.
sector_count
;
geometry
->
block_size
=
spi_flash_device
.
geometry
.
block_size
;
}
return
RT_EOK
;
}
static
rt_size_t
w25qxx_flash_read
(
rt_device_t
dev
,
rt_off_t
pos
,
void
*
buffer
,
rt_size_t
size
)
{
flash_lock
((
struct
spi_flash_device
*
)
dev
);
w25qxx_read
(
pos
*
spi_flash_device
.
geometry
.
bytes_per_sector
,
buffer
,
size
*
spi_flash_device
.
geometry
.
bytes_per_sector
);
flash_unlock
((
struct
spi_flash_device
*
)
dev
);
return
size
;
}
static
rt_size_t
w25qxx_flash_write
(
rt_device_t
dev
,
rt_off_t
pos
,
const
void
*
buffer
,
rt_size_t
size
)
{
rt_size_t
i
=
0
;
rt_size_t
block
=
size
;
const
uint8_t
*
ptr
=
buffer
;
flash_lock
((
struct
spi_flash_device
*
)
dev
);
while
(
block
--
)
{
w25qxx_page_write
((
pos
+
i
)
*
spi_flash_device
.
geometry
.
bytes_per_sector
,
ptr
);
ptr
+=
PAGE_SIZE
;
i
++
;
}
flash_unlock
((
struct
spi_flash_device
*
)
dev
);
return
size
;
}
#ifdef RT_USING_DEVICE_OPS
const
static
struct
rt_device_ops
gd_device_ops
=
{
w25qxx_flash_init
,
w25qxx_flash_open
,
w25qxx_flash_close
,
w25qxx_flash_read
,
w25qxx_flash_write
,
w25qxx_flash_control
};
#endif
rt_err_t
gd_init
(
const
char
*
flash_device_name
,
const
char
*
spi_device_name
)
{
struct
rt_spi_device
*
rt_spi_device
;
/* initialize mutex */
if
(
rt_mutex_init
(
&
spi_flash_device
.
lock
,
spi_device_name
,
RT_IPC_FLAG_FIFO
)
!=
RT_EOK
)
{
rt_kprintf
(
"init sd lock mutex failed
\n
"
);
return
-
RT_ENOSYS
;
}
rt_spi_device
=
(
struct
rt_spi_device
*
)
rt_device_find
(
spi_device_name
);
if
(
rt_spi_device
==
RT_NULL
)
{
FLASH_TRACE
(
"spi device %s not found!
\r\n
"
,
spi_device_name
);
return
-
RT_ENOSYS
;
}
spi_flash_device
.
rt_spi_device
=
rt_spi_device
;
/* config spi */
{
struct
rt_spi_configuration
cfg
;
cfg
.
data_width
=
8
;
cfg
.
mode
=
RT_SPI_MODE_0
|
RT_SPI_MSB
;
/* SPI Compatible: Mode 0 and Mode 3 */
cfg
.
max_hz
=
50
*
1000
*
1000
;
/* 50M */
rt_spi_configure
(
spi_flash_device
.
rt_spi_device
,
&
cfg
);
}
/* init flash */
{
rt_uint8_t
cmd
;
rt_uint8_t
id_recv
[
3
];
uint16_t
memory_type_capacity
;
flash_lock
(
&
spi_flash_device
);
cmd
=
0xFF
;
/* reset SPI FLASH, cancel all cmd in processing. */
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
&
cmd
,
1
);
cmd
=
CMD_WRDI
;
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
&
cmd
,
1
);
/* read flash id */
cmd
=
CMD_JEDEC_ID
;
rt_spi_send_then_recv
(
spi_flash_device
.
rt_spi_device
,
&
cmd
,
1
,
id_recv
,
3
);
flash_unlock
(
&
spi_flash_device
);
if
(
id_recv
[
0
]
!=
MF_ID
)
{
FLASH_TRACE
(
"Manufacturers ID error!
\r\n
"
);
FLASH_TRACE
(
"JEDEC Read-ID Data : %02X %02X %02X
\r\n
"
,
id_recv
[
0
],
id_recv
[
1
],
id_recv
[
2
]);
return
-
RT_ENOSYS
;
}
spi_flash_device
.
geometry
.
bytes_per_sector
=
4096
;
spi_flash_device
.
geometry
.
block_size
=
4096
;
/* block erase: 4k */
/* get memory type and capacity */
memory_type_capacity
=
id_recv
[
1
];
memory_type_capacity
=
(
memory_type_capacity
<<
8
)
|
id_recv
[
2
];
if
(
memory_type_capacity
==
MTC_GD25Q128
)
{
FLASH_TRACE
(
"GD128 detection
\r\n
"
);
spi_flash_device
.
geometry
.
sector_count
=
4096
;
}
else
{
FLASH_TRACE
(
"Memory Capacity error!
\r\n
"
);
return
-
RT_ENOSYS
;
}
}
/* register device */
spi_flash_device
.
flash_device
.
type
=
RT_Device_Class_Block
;
#ifdef RT_USING_DEVICE_OPS
spi_flash_device
.
flash_device
.
ops
=
&
gd_device_ops
;
#else
spi_flash_device
.
flash_device
.
init
=
w25qxx_flash_init
;
spi_flash_device
.
flash_device
.
open
=
w25qxx_flash_open
;
spi_flash_device
.
flash_device
.
close
=
w25qxx_flash_close
;
spi_flash_device
.
flash_device
.
read
=
w25qxx_flash_read
;
spi_flash_device
.
flash_device
.
write
=
w25qxx_flash_write
;
spi_flash_device
.
flash_device
.
control
=
w25qxx_flash_control
;
#endif
/* no private */
spi_flash_device
.
flash_device
.
user_data
=
RT_NULL
;
rt_device_register
(
&
spi_flash_device
.
flash_device
,
flash_device_name
,
RT_DEVICE_FLAG_RDWR
|
RT_DEVICE_FLAG_STANDALONE
);
return
RT_EOK
;
}
components/drivers/spi/spi_flash_gd.h
已删除
100644 → 0
浏览文件 @
c45f2f4c
/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2015-10-11 fullhan copy from winbond flash
*/
#ifndef SPI_FLASH_GD_H_
#define SPI_FLASH_GD_H_
#include <rtthread.h>
extern
rt_err_t
gd_init
(
const
char
*
flash_device_name
,
const
char
*
spi_device_name
);
#endif
/* SPI_FLASH_GD_H_ */
components/drivers/spi/spi_flash_sst25vfxx.c
已删除
100644 → 0
浏览文件 @
c45f2f4c
/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2011-12-16 aozima the first version
*/
#include <stdint.h>
#include "spi_flash_sst25vfxx.h"
#define FLASH_DEBUG
#ifdef FLASH_DEBUG
#define FLASH_TRACE rt_kprintf
#else
#define FLASH_TRACE(...)
#endif
/* #ifdef FLASH_DEBUG */
/* JEDEC Manufacturer’s ID */
#define MF_ID (0xBF)
/* JEDEC Device ID : Memory Type */
#define MT_ID (0x25)
/* JEDEC Device ID: Memory Capacity */
#define MC_ID_SST25VF020B (0x8C)
/* 2Mbit */
#define MC_ID_SST25VF040B (0x8D)
/* 4Mbit */
#define MC_ID_SST25VF080B (0x8E)
/* 8Mbit */
#define MC_ID_SST25VF016B (0x41)
/* 16Mbit */
#define MC_ID_SST25VF032B (0x4A)
/* 32Mbit */
#define MC_ID_SST25VF064C (0x4B)
/* 64Mbit */
/* command list */
#define CMD_RDSR (0x05)
#define CMD_WRSR (0x01)
#define CMD_EWSR (0x50)
#define CMD_WRDI (0x04)
#define CMD_WREN (0x06)
#define CMD_READ (0x03)
#define CMD_FAST_READ (0x0B)
#define CMD_BP (0x02)
#define CMD_AAIP (0xAD)
#define CMD_ERASE_4K (0x20)
#define CMD_ERASE_32K (0x52)
#define CMD_ERASE_64K (0xD8)
#define CMD_ERASE_full (0xC7)
#define CMD_JEDEC_ID (0x9F)
#define CMD_EBSY (0x70)
#define CMD_DBSY (0x80)
#define DUMMY (0xFF)
static
struct
spi_flash_sst25vfxx
spi_flash_sst25vfxx
;
static
uint8_t
sst25vfxx_read_status
(
struct
spi_flash_sst25vfxx
*
spi_flash
)
{
return
rt_spi_sendrecv8
(
spi_flash
->
rt_spi_device
,
CMD_RDSR
);
}
static
void
sst25vfxx_wait_busy
(
struct
spi_flash_sst25vfxx
*
spi_flash
)
{
while
(
sst25vfxx_read_status
(
spi_flash
)
&
(
0x01
));
}
/** \brief write N page on [page]
*
* \param page uint32_t unit : byte (4096 * N,1 page = 4096byte)
* \param buffer const uint8_t*
* \param size uint32_t unit : byte ( 4096*N )
* \return uint32_t
*
*/
static
uint32_t
sst25vfxx_page_write
(
struct
spi_flash_sst25vfxx
*
spi_flash
,
uint32_t
page
,
const
uint8_t
*
buffer
,
uint32_t
size
)
{
uint32_t
index
;
uint32_t
need_wirte
=
size
;
uint8_t
send_buffer
[
6
];
page
&=
~
0xFFF
;
// page size = 4096byte
send_buffer
[
0
]
=
CMD_WREN
;
rt_spi_send
(
spi_flash
->
rt_spi_device
,
send_buffer
,
1
);
send_buffer
[
0
]
=
CMD_ERASE_4K
;
send_buffer
[
1
]
=
(
page
>>
16
);
send_buffer
[
2
]
=
(
page
>>
8
);
send_buffer
[
3
]
=
(
page
);
rt_spi_send
(
spi_flash
->
rt_spi_device
,
send_buffer
,
4
);
sst25vfxx_wait_busy
(
spi_flash
);
// wait erase done.
send_buffer
[
0
]
=
CMD_WREN
;
rt_spi_send
(
spi_flash
->
rt_spi_device
,
send_buffer
,
1
);
send_buffer
[
0
]
=
CMD_AAIP
;
send_buffer
[
1
]
=
(
uint8_t
)(
page
>>
16
);
send_buffer
[
2
]
=
(
uint8_t
)(
page
>>
8
);
send_buffer
[
3
]
=
(
uint8_t
)(
page
);
send_buffer
[
4
]
=
*
buffer
++
;
send_buffer
[
5
]
=
*
buffer
++
;
need_wirte
-=
2
;
rt_spi_send
(
spi_flash
->
rt_spi_device
,
send_buffer
,
6
);
sst25vfxx_wait_busy
(
spi_flash
);
for
(
index
=
0
;
index
<
need_wirte
/
2
;
index
++
)
{
send_buffer
[
0
]
=
CMD_AAIP
;
send_buffer
[
1
]
=
*
buffer
++
;
send_buffer
[
2
]
=
*
buffer
++
;
rt_spi_send
(
spi_flash
->
rt_spi_device
,
send_buffer
,
3
);
sst25vfxx_wait_busy
(
spi_flash
);
}
send_buffer
[
0
]
=
CMD_WRDI
;
rt_spi_send
(
spi_flash
->
rt_spi_device
,
send_buffer
,
1
);
return
size
;
}
/* RT-Thread device interface */
static
rt_err_t
sst25vfxx_flash_init
(
rt_device_t
dev
)
{
return
RT_EOK
;
}
static
rt_err_t
sst25vfxx_flash_open
(
rt_device_t
dev
,
rt_uint16_t
oflag
)
{
rt_err_t
result
;
uint8_t
send_buffer
[
2
];
struct
spi_flash_sst25vfxx
*
spi_flash
=
(
struct
spi_flash_sst25vfxx
*
)
dev
;
/* lock spi flash */
result
=
rt_mutex_take
(
&
(
spi_flash
->
lock
),
RT_WAITING_FOREVER
);
if
(
result
!=
RT_EOK
)
{
return
result
;
}
send_buffer
[
0
]
=
CMD_DBSY
;
rt_spi_send
(
spi_flash
->
rt_spi_device
,
send_buffer
,
1
);
send_buffer
[
0
]
=
CMD_EWSR
;
rt_spi_send
(
spi_flash
->
rt_spi_device
,
send_buffer
,
1
);
send_buffer
[
0
]
=
CMD_WRSR
;
send_buffer
[
1
]
=
0
;
rt_spi_send
(
spi_flash
->
rt_spi_device
,
send_buffer
,
2
);
/* release lock */
rt_mutex_release
(
&
(
spi_flash
->
lock
));
return
RT_EOK
;
}
static
rt_err_t
sst25vfxx_flash_close
(
rt_device_t
dev
)
{
return
RT_EOK
;
}
static
rt_err_t
sst25vfxx_flash_control
(
rt_device_t
dev
,
int
cmd
,
void
*
args
)
{
struct
spi_flash_sst25vfxx
*
spi_flash
;
spi_flash
=
(
struct
spi_flash_sst25vfxx
*
)
dev
;
RT_ASSERT
(
dev
!=
RT_NULL
);
if
(
cmd
==
RT_DEVICE_CTRL_BLK_GETGEOME
)
{
struct
rt_device_blk_geometry
*
geometry
;
geometry
=
(
struct
rt_device_blk_geometry
*
)
args
;
if
(
geometry
==
RT_NULL
)
return
-
RT_ERROR
;
geometry
->
bytes_per_sector
=
spi_flash
->
geometry
.
bytes_per_sector
;
geometry
->
sector_count
=
spi_flash
->
geometry
.
sector_count
;
geometry
->
block_size
=
spi_flash
->
geometry
.
block_size
;
}
return
RT_EOK
;
}
static
rt_size_t
sst25vfxx_flash_read
(
rt_device_t
dev
,
rt_off_t
pos
,
void
*
buffer
,
rt_size_t
size
)
{
rt_err_t
result
;
uint8_t
send_buffer
[
4
];
struct
spi_flash_sst25vfxx
*
spi_flash
=
(
struct
spi_flash_sst25vfxx
*
)
dev
;
uint32_t
offset
=
pos
*
spi_flash
->
geometry
.
bytes_per_sector
;
/* lock spi flash */
result
=
rt_mutex_take
(
&
(
spi_flash
->
lock
),
RT_WAITING_FOREVER
);
if
(
result
!=
RT_EOK
)
{
return
0
;
}
send_buffer
[
0
]
=
CMD_WRDI
;
rt_spi_send
(
spi_flash
->
rt_spi_device
,
send_buffer
,
1
);
send_buffer
[
0
]
=
CMD_READ
;
send_buffer
[
1
]
=
(
uint8_t
)(
offset
>>
16
);
send_buffer
[
2
]
=
(
uint8_t
)(
offset
>>
8
);
send_buffer
[
3
]
=
(
uint8_t
)(
offset
);
rt_spi_send_then_recv
(
spi_flash
->
rt_spi_device
,
send_buffer
,
4
,
buffer
,
size
*
spi_flash
->
geometry
.
bytes_per_sector
);
/* release lock */
rt_mutex_release
(
&
(
spi_flash
->
lock
));
return
size
;
}
static
rt_size_t
sst25vfxx_flash_write
(
rt_device_t
dev
,
rt_off_t
pos
,
const
void
*
buffer
,
rt_size_t
size
)
{
uint32_t
i
;
rt_err_t
result
;
const
uint8_t
*
write_buffer
=
buffer
;
struct
spi_flash_sst25vfxx
*
spi_flash
=
(
struct
spi_flash_sst25vfxx
*
)
dev
;
/* lock spi flash */
result
=
rt_mutex_take
(
&
(
spi_flash
->
lock
),
RT_WAITING_FOREVER
);
if
(
result
!=
RT_EOK
)
{
return
0
;
}
for
(
i
=
0
;
i
<
size
;
i
++
)
{
sst25vfxx_page_write
(
spi_flash
,
(
pos
+
i
)
*
spi_flash
->
geometry
.
bytes_per_sector
,
write_buffer
,
spi_flash
->
geometry
.
bytes_per_sector
);
write_buffer
+=
spi_flash
->
geometry
.
bytes_per_sector
;
}
/* release lock */
rt_mutex_release
(
&
(
spi_flash
->
lock
));
return
size
;
}
#ifdef RT_USING_DEVICE_OPS
const
static
struct
rt_device_ops
sst25vfxx_device_ops
=
{
sst25vfxx_flash_init
,
sst25vfxx_flash_open
,
sst25vfxx_flash_close
,
sst25vfxx_flash_read
,
sst25vfxx_flash_write
,
sst25vfxx_flash_control
};
#endif
rt_err_t
sst25vfxx_init
(
const
char
*
flash_device_name
,
const
char
*
spi_device_name
)
{
struct
rt_spi_device
*
rt_spi_device
;
struct
spi_flash_sst25vfxx
*
spi_flash
=
&
spi_flash_sst25vfxx
;
rt_spi_device
=
(
struct
rt_spi_device
*
)
rt_device_find
(
spi_device_name
);
if
(
rt_spi_device
==
RT_NULL
)
{
FLASH_TRACE
(
"spi device %s not found!
\r\n
"
,
spi_device_name
);
return
-
RT_ENOSYS
;
}
spi_flash
->
rt_spi_device
=
rt_spi_device
;
/* config spi */
{
struct
rt_spi_configuration
cfg
;
cfg
.
data_width
=
8
;
cfg
.
mode
=
RT_SPI_MODE_0
|
RT_SPI_MSB
;
/* SPI Compatible: Mode 0 and Mode 3 */
cfg
.
max_hz
=
50000000
;
/* 50M */
rt_spi_configure
(
spi_flash
->
rt_spi_device
,
&
cfg
);
}
/* init flash */
{
rt_uint8_t
cmd
;
rt_uint8_t
id_recv
[
3
];
cmd
=
CMD_WRDI
;
rt_spi_send
(
spi_flash
->
rt_spi_device
,
&
cmd
,
1
);
/* read flash id */
cmd
=
CMD_JEDEC_ID
;
rt_spi_send_then_recv
(
spi_flash
->
rt_spi_device
,
&
cmd
,
1
,
id_recv
,
3
);
if
(
id_recv
[
0
]
!=
MF_ID
||
id_recv
[
1
]
!=
MT_ID
)
{
FLASH_TRACE
(
"Manufacturer’s ID or Memory Type error!
\r\n
"
);
FLASH_TRACE
(
"JEDEC Read-ID Data : %02X %02X %02X
\r\n
"
,
id_recv
[
0
],
id_recv
[
1
],
id_recv
[
2
]);
return
-
RT_ENOSYS
;
}
spi_flash
->
geometry
.
bytes_per_sector
=
4096
;
spi_flash
->
geometry
.
block_size
=
4096
;
/* block erase: 4k */
if
(
id_recv
[
2
]
==
MC_ID_SST25VF020B
)
{
FLASH_TRACE
(
"SST25VF020B detection
\r\n
"
);
spi_flash
->
geometry
.
sector_count
=
64
;
}
else
if
(
id_recv
[
2
]
==
MC_ID_SST25VF040B
)
{
FLASH_TRACE
(
"SST25VF040B detection
\r\n
"
);
spi_flash
->
geometry
.
sector_count
=
128
;
}
else
if
(
id_recv
[
2
]
==
MC_ID_SST25VF080B
)
{
FLASH_TRACE
(
"SST25VF080B detection
\r\n
"
);
spi_flash
->
geometry
.
sector_count
=
256
;
}
else
if
(
id_recv
[
2
]
==
MC_ID_SST25VF016B
)
{
FLASH_TRACE
(
"SST25VF016B detection
\r\n
"
);
spi_flash
->
geometry
.
sector_count
=
512
;
}
else
if
(
id_recv
[
2
]
==
MC_ID_SST25VF032B
)
{
FLASH_TRACE
(
"SST25VF032B detection
\r\n
"
);
spi_flash
->
geometry
.
sector_count
=
1024
;
}
else
if
(
id_recv
[
2
]
==
MC_ID_SST25VF064C
)
{
FLASH_TRACE
(
"SST25VF064C detection
\r\n
"
);
spi_flash
->
geometry
.
sector_count
=
2048
;
}
else
{
FLASH_TRACE
(
"Memory Capacity error!
\r\n
"
);
return
-
RT_ENOSYS
;
}
}
/* initialize mutex lock */
rt_mutex_init
(
&
spi_flash
->
lock
,
flash_device_name
,
RT_IPC_FLAG_PRIO
);
/* register device */
spi_flash
->
flash_device
.
type
=
RT_Device_Class_Block
;
#ifdef RT_USING_DEVICE_OPS
spi_flash
->
flash_device
.
ops
=
&
sst25vfxx_device_ops
;
#else
spi_flash
->
flash_device
.
init
=
sst25vfxx_flash_init
;
spi_flash
->
flash_device
.
open
=
sst25vfxx_flash_open
;
spi_flash
->
flash_device
.
close
=
sst25vfxx_flash_close
;
spi_flash
->
flash_device
.
read
=
sst25vfxx_flash_read
;
spi_flash
->
flash_device
.
write
=
sst25vfxx_flash_write
;
spi_flash
->
flash_device
.
control
=
sst25vfxx_flash_control
;
#endif
/* no private */
spi_flash
->
flash_device
.
user_data
=
RT_NULL
;
rt_device_register
(
&
spi_flash
->
flash_device
,
flash_device_name
,
RT_DEVICE_FLAG_RDWR
|
RT_DEVICE_FLAG_STANDALONE
);
return
RT_EOK
;
}
components/drivers/spi/spi_flash_sst25vfxx.h
已删除
100644 → 0
浏览文件 @
c45f2f4c
/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2011-12-16 aozima the first version
*/
#ifndef SPI_FLASH_SST25VFXX_H_INCLUDED
#define SPI_FLASH_SST25VFXX_H_INCLUDED
#include <rtthread.h>
#include <drivers/spi.h>
struct
spi_flash_sst25vfxx
{
struct
rt_device
flash_device
;
struct
rt_device_blk_geometry
geometry
;
struct
rt_spi_device
*
rt_spi_device
;
struct
rt_mutex
lock
;
};
extern
rt_err_t
sst25vfxx_init
(
const
char
*
flash_device_name
,
const
char
*
spi_device_name
);
#endif // SPI_FLASH_SST25VFXX_H_INCLUDED
components/drivers/spi/spi_flash_w25qxx.c
已删除
100644 → 0
浏览文件 @
c45f2f4c
/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2011-12-16 aozima the first version
* 2012-05-06 aozima can page write.
* 2012-08-23 aozima add flash lock.
* 2012-08-24 aozima fixed write status register BUG.
*/
#include <stdint.h>
#include <rtdevice.h>
#include "spi_flash.h"
#include "spi_flash_w25qxx.h"
#define FLASH_DEBUG
#ifdef FLASH_DEBUG
#define FLASH_TRACE rt_kprintf
#else
#define FLASH_TRACE(...)
#endif
/* #ifdef FLASH_DEBUG */
#define PAGE_SIZE 4096
/* JEDEC Manufacturer ID */
#define MF_ID (0xEF)
/* JEDEC Device ID: Memory type and Capacity */
#define MTC_W25Q80_BV (0x4014)
/* W25Q80BV */
#define MTC_W25Q16_BV_CL_CV (0x4015)
/* W25Q16BV W25Q16CL W25Q16CV */
#define MTC_W25Q16_DW (0x6015)
/* W25Q16DW */
#define MTC_W25Q32_BV (0x4016)
/* W25Q32BV */
#define MTC_W25Q32_DW (0x6016)
/* W25Q32DW */
#define MTC_W25Q64_BV_CV (0x4017)
/* W25Q64BV W25Q64CV */
#define MTC_W25Q64_DW (0x4017)
/* W25Q64DW */
#define MTC_W25Q128_BV (0x4018)
/* W25Q128BV */
#define MTC_W25Q256_FV (TBD)
/* W25Q256FV */
/* command list */
#define CMD_WRSR (0x01)
/* Write Status Register */
#define CMD_PP (0x02)
/* Page Program */
#define CMD_READ (0x03)
/* Read Data */
#define CMD_WRDI (0x04)
/* Write Disable */
#define CMD_RDSR1 (0x05)
/* Read Status Register-1 */
#define CMD_WREN (0x06)
/* Write Enable */
#define CMD_FAST_READ (0x0B)
/* Fast Read */
#define CMD_ERASE_4K (0x20)
/* Sector Erase:4K */
#define CMD_RDSR2 (0x35)
/* Read Status Register-2 */
#define CMD_ERASE_32K (0x52)
/* 32KB Block Erase */
#define CMD_JEDEC_ID (0x9F)
/* Read JEDEC ID */
#define CMD_ERASE_full (0xC7)
/* Chip Erase */
#define CMD_ERASE_64K (0xD8)
/* 64KB Block Erase */
#define DUMMY (0xFF)
static
struct
spi_flash_device
spi_flash_device
;
static
void
flash_lock
(
struct
spi_flash_device
*
flash_device
)
{
rt_mutex_take
(
&
flash_device
->
lock
,
RT_WAITING_FOREVER
);
}
static
void
flash_unlock
(
struct
spi_flash_device
*
flash_device
)
{
rt_mutex_release
(
&
flash_device
->
lock
);
}
static
uint8_t
w25qxx_read_status
(
void
)
{
return
rt_spi_sendrecv8
(
spi_flash_device
.
rt_spi_device
,
CMD_RDSR1
);
}
static
void
w25qxx_wait_busy
(
void
)
{
while
(
w25qxx_read_status
()
&
(
0x01
));
}
/** \brief read [size] byte from [offset] to [buffer]
*
* \param offset uint32_t unit : byte
* \param buffer uint8_t*
* \param size uint32_t unit : byte
* \return uint32_t byte for read
*
*/
static
uint32_t
w25qxx_read
(
uint32_t
offset
,
uint8_t
*
buffer
,
uint32_t
size
)
{
uint8_t
send_buffer
[
4
];
send_buffer
[
0
]
=
CMD_WRDI
;
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
1
);
send_buffer
[
0
]
=
CMD_READ
;
send_buffer
[
1
]
=
(
uint8_t
)(
offset
>>
16
);
send_buffer
[
2
]
=
(
uint8_t
)(
offset
>>
8
);
send_buffer
[
3
]
=
(
uint8_t
)(
offset
);
rt_spi_send_then_recv
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
4
,
buffer
,
size
);
return
size
;
}
/** \brief write N page on [page]
*
* \param page_addr uint32_t unit : byte (4096 * N,1 page = 4096byte)
* \param buffer const uint8_t*
* \return uint32_t
*
*/
uint32_t
w25qxx_page_write
(
uint32_t
page_addr
,
const
uint8_t
*
buffer
)
{
uint32_t
index
;
uint8_t
send_buffer
[
4
];
RT_ASSERT
((
page_addr
&
0xFF
)
==
0
);
/* page addr must align to 256byte. */
send_buffer
[
0
]
=
CMD_WREN
;
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
1
);
send_buffer
[
0
]
=
CMD_ERASE_4K
;
send_buffer
[
1
]
=
(
page_addr
>>
16
);
send_buffer
[
2
]
=
(
page_addr
>>
8
);
send_buffer
[
3
]
=
(
page_addr
);
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
4
);
w25qxx_wait_busy
();
// wait erase done.
for
(
index
=
0
;
index
<
(
PAGE_SIZE
/
256
);
index
++
)
{
send_buffer
[
0
]
=
CMD_WREN
;
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
1
);
send_buffer
[
0
]
=
CMD_PP
;
send_buffer
[
1
]
=
(
uint8_t
)(
page_addr
>>
16
);
send_buffer
[
2
]
=
(
uint8_t
)(
page_addr
>>
8
);
send_buffer
[
3
]
=
(
uint8_t
)(
page_addr
);
rt_spi_send_then_send
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
4
,
buffer
,
256
);
buffer
+=
256
;
page_addr
+=
256
;
w25qxx_wait_busy
();
}
send_buffer
[
0
]
=
CMD_WRDI
;
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
1
);
return
PAGE_SIZE
;
}
/* RT-Thread device interface */
static
rt_err_t
w25qxx_flash_init
(
rt_device_t
dev
)
{
return
RT_EOK
;
}
static
rt_err_t
w25qxx_flash_open
(
rt_device_t
dev
,
rt_uint16_t
oflag
)
{
uint8_t
send_buffer
[
3
];
flash_lock
((
struct
spi_flash_device
*
)
dev
);
send_buffer
[
0
]
=
CMD_WREN
;
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
1
);
send_buffer
[
0
]
=
CMD_WRSR
;
send_buffer
[
1
]
=
0
;
send_buffer
[
2
]
=
0
;
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
send_buffer
,
3
);
w25qxx_wait_busy
();
flash_unlock
((
struct
spi_flash_device
*
)
dev
);
return
RT_EOK
;
}
static
rt_err_t
w25qxx_flash_close
(
rt_device_t
dev
)
{
return
RT_EOK
;
}
static
rt_err_t
w25qxx_flash_control
(
rt_device_t
dev
,
int
cmd
,
void
*
args
)
{
RT_ASSERT
(
dev
!=
RT_NULL
);
if
(
cmd
==
RT_DEVICE_CTRL_BLK_GETGEOME
)
{
struct
rt_device_blk_geometry
*
geometry
;
geometry
=
(
struct
rt_device_blk_geometry
*
)
args
;
if
(
geometry
==
RT_NULL
)
return
-
RT_ERROR
;
geometry
->
bytes_per_sector
=
spi_flash_device
.
geometry
.
bytes_per_sector
;
geometry
->
sector_count
=
spi_flash_device
.
geometry
.
sector_count
;
geometry
->
block_size
=
spi_flash_device
.
geometry
.
block_size
;
}
return
RT_EOK
;
}
static
rt_size_t
w25qxx_flash_read
(
rt_device_t
dev
,
rt_off_t
pos
,
void
*
buffer
,
rt_size_t
size
)
{
flash_lock
((
struct
spi_flash_device
*
)
dev
);
w25qxx_read
(
pos
*
spi_flash_device
.
geometry
.
bytes_per_sector
,
buffer
,
size
*
spi_flash_device
.
geometry
.
bytes_per_sector
);
flash_unlock
((
struct
spi_flash_device
*
)
dev
);
return
size
;
}
static
rt_size_t
w25qxx_flash_write
(
rt_device_t
dev
,
rt_off_t
pos
,
const
void
*
buffer
,
rt_size_t
size
)
{
rt_size_t
i
=
0
;
rt_size_t
block
=
size
;
const
uint8_t
*
ptr
=
buffer
;
flash_lock
((
struct
spi_flash_device
*
)
dev
);
while
(
block
--
)
{
w25qxx_page_write
((
pos
+
i
)
*
spi_flash_device
.
geometry
.
bytes_per_sector
,
ptr
);
ptr
+=
PAGE_SIZE
;
i
++
;
}
flash_unlock
((
struct
spi_flash_device
*
)
dev
);
return
size
;
}
#ifdef RT_USING_DEVICE_OPS
const
static
struct
rt_device_ops
w25qxx_device_ops
=
{
w25qxx_flash_init
,
w25qxx_flash_open
,
w25qxx_flash_close
,
w25qxx_flash_read
,
w25qxx_flash_write
,
w25qxx_flash_control
};
#endif
rt_err_t
w25qxx_init
(
const
char
*
flash_device_name
,
const
char
*
spi_device_name
)
{
struct
rt_spi_device
*
rt_spi_device
;
/* initialize mutex */
if
(
rt_mutex_init
(
&
spi_flash_device
.
lock
,
spi_device_name
,
RT_IPC_FLAG_FIFO
)
!=
RT_EOK
)
{
rt_kprintf
(
"init sd lock mutex failed
\n
"
);
return
-
RT_ENOSYS
;
}
rt_spi_device
=
(
struct
rt_spi_device
*
)
rt_device_find
(
spi_device_name
);
if
(
rt_spi_device
==
RT_NULL
)
{
FLASH_TRACE
(
"spi device %s not found!
\r\n
"
,
spi_device_name
);
return
-
RT_ENOSYS
;
}
spi_flash_device
.
rt_spi_device
=
rt_spi_device
;
/* config spi */
{
struct
rt_spi_configuration
cfg
;
cfg
.
data_width
=
8
;
cfg
.
mode
=
RT_SPI_MODE_0
|
RT_SPI_MSB
;
/* SPI Compatible: Mode 0 and Mode 3 */
cfg
.
max_hz
=
50
*
1000
*
1000
;
/* 50M */
rt_spi_configure
(
spi_flash_device
.
rt_spi_device
,
&
cfg
);
}
/* init flash */
{
rt_uint8_t
cmd
;
rt_uint8_t
id_recv
[
3
];
uint16_t
memory_type_capacity
;
flash_lock
(
&
spi_flash_device
);
cmd
=
0xFF
;
/* reset SPI FLASH, cancel all cmd in processing. */
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
&
cmd
,
1
);
cmd
=
CMD_WRDI
;
rt_spi_send
(
spi_flash_device
.
rt_spi_device
,
&
cmd
,
1
);
/* read flash id */
cmd
=
CMD_JEDEC_ID
;
rt_spi_send_then_recv
(
spi_flash_device
.
rt_spi_device
,
&
cmd
,
1
,
id_recv
,
3
);
flash_unlock
(
&
spi_flash_device
);
if
(
id_recv
[
0
]
!=
MF_ID
)
{
FLASH_TRACE
(
"Manufacturers ID error!
\r\n
"
);
FLASH_TRACE
(
"JEDEC Read-ID Data : %02X %02X %02X
\r\n
"
,
id_recv
[
0
],
id_recv
[
1
],
id_recv
[
2
]);
return
-
RT_ENOSYS
;
}
spi_flash_device
.
geometry
.
bytes_per_sector
=
4096
;
spi_flash_device
.
geometry
.
block_size
=
4096
;
/* block erase: 4k */
/* get memory type and capacity */
memory_type_capacity
=
id_recv
[
1
];
memory_type_capacity
=
(
memory_type_capacity
<<
8
)
|
id_recv
[
2
];
if
(
memory_type_capacity
==
MTC_W25Q128_BV
)
{
FLASH_TRACE
(
"W25Q128BV detection
\r\n
"
);
spi_flash_device
.
geometry
.
sector_count
=
4096
;
}
else
if
(
memory_type_capacity
==
MTC_W25Q64_BV_CV
)
{
FLASH_TRACE
(
"W25Q64BV or W25Q64CV detection
\r\n
"
);
spi_flash_device
.
geometry
.
sector_count
=
2048
;
}
else
if
(
memory_type_capacity
==
MTC_W25Q64_DW
)
{
FLASH_TRACE
(
"W25Q64DW detection
\r\n
"
);
spi_flash_device
.
geometry
.
sector_count
=
2048
;
}
else
if
(
memory_type_capacity
==
MTC_W25Q32_BV
)
{
FLASH_TRACE
(
"W25Q32BV detection
\r\n
"
);
spi_flash_device
.
geometry
.
sector_count
=
1024
;
}
else
if
(
memory_type_capacity
==
MTC_W25Q32_DW
)
{
FLASH_TRACE
(
"W25Q32DW detection
\r\n
"
);
spi_flash_device
.
geometry
.
sector_count
=
1024
;
}
else
if
(
memory_type_capacity
==
MTC_W25Q16_BV_CL_CV
)
{
FLASH_TRACE
(
"W25Q16BV or W25Q16CL or W25Q16CV detection
\r\n
"
);
spi_flash_device
.
geometry
.
sector_count
=
512
;
}
else
if
(
memory_type_capacity
==
MTC_W25Q16_DW
)
{
FLASH_TRACE
(
"W25Q16DW detection
\r\n
"
);
spi_flash_device
.
geometry
.
sector_count
=
512
;
}
else
if
(
memory_type_capacity
==
MTC_W25Q80_BV
)
{
FLASH_TRACE
(
"W25Q80BV detection
\r\n
"
);
spi_flash_device
.
geometry
.
sector_count
=
256
;
}
else
{
FLASH_TRACE
(
"Memory Capacity error!
\r\n
"
);
return
-
RT_ENOSYS
;
}
}
/* register device */
spi_flash_device
.
flash_device
.
type
=
RT_Device_Class_Block
;
#ifdef RT_USING_DEVICE_OPS
spi_flash_device
.
flash_device
.
ops
=
&
w25qxx_device_ops
;
#else
spi_flash_device
.
flash_device
.
init
=
w25qxx_flash_init
;
spi_flash_device
.
flash_device
.
open
=
w25qxx_flash_open
;
spi_flash_device
.
flash_device
.
close
=
w25qxx_flash_close
;
spi_flash_device
.
flash_device
.
read
=
w25qxx_flash_read
;
spi_flash_device
.
flash_device
.
write
=
w25qxx_flash_write
;
spi_flash_device
.
flash_device
.
control
=
w25qxx_flash_control
;
#endif
/* no private */
spi_flash_device
.
flash_device
.
user_data
=
RT_NULL
;
rt_device_register
(
&
spi_flash_device
.
flash_device
,
flash_device_name
,
RT_DEVICE_FLAG_RDWR
|
RT_DEVICE_FLAG_STANDALONE
);
return
RT_EOK
;
}
components/drivers/spi/spi_flash_w25qxx.h
已删除
100644 → 0
浏览文件 @
c45f2f4c
/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2011-12-16 aozima the first version
* 2012-08-23 aozima add flash lock.
*/
#ifndef SPI_FLASH_W25QXX_H_INCLUDED
#define SPI_FLASH_W25QXX_H_INCLUDED
#include <rtthread.h>
extern
rt_err_t
w25qxx_init
(
const
char
*
flash_device_name
,
const
char
*
spi_device_name
);
#endif // SPI_FLASH_W25QXX_H_INCLUDED
components/drivers/spi/spi_flash_w25qxx_mtd.c
已删除
100644 → 0
浏览文件 @
c45f2f4c
/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
*/
#include <rtthread.h>
#include <rtdevice.h>
#include "spi_flash.h"
#include "spi_flash_w25qxx_mtd.h"
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define FLASH_DEBUG
#ifdef FLASH_DEBUG
#define FLASH_TRACE printf
#else
#define FLASH_TRACE(...)
#endif
/* #ifdef FLASH_DEBUG */
/* JEDEC Manufacturer’s ID */
#define MF_ID (0xEF)
/* JEDEC Device ID: Memory type and Capacity */
#define MTC_W25Q80_BV (0x4014)
/* W25Q80BV */
#define MTC_W25Q16_BV_CL_CV (0x4015)
/* W25Q16BV W25Q16CL W25Q16CV */
#define MTC_W25Q16_DW (0x6015)
/* W25Q16DW */
#define MTC_W25Q32_BV (0x4016)
/* W25Q32BV */
#define MTC_W25Q32_DW (0x6016)
/* W25Q32DW */
#define MTC_W25Q64_BV_CV (0x4017)
/* W25Q64BV W25Q64CV */
#define MTC_W25Q64_DW (0x4017)
/* W25Q64DW */
#define MTC_W25Q128_BV (0x4018)
/* W25Q128BV */
#define MTC_W25Q256_FV (TBD)
/* W25Q256FV */
#define MTC_W25X80 (0x3014)
/* command list */
#define CMD_WRSR (0x01)
/* Write Status Register */
#define CMD_PP (0x02)
/* Page Program */
#define CMD_READ (0x03)
/* Read Data */
#define CMD_WRDI (0x04)
/* Write Disable */
#define CMD_RDSR1 (0x05)
/* Read Status Register-1 */
#define CMD_WREN (0x06)
/* Write Enable */
#define CMD_FAST_READ (0x0B)
/* Fast Read */
#define CMD_ERASE_4K (0x20)
/* Sector Erase:4K */
#define CMD_RDSR2 (0x35)
/* Read Status Register-2 */
#define CMD_ERASE_32K (0x52)
/* 32KB Block Erase */
#define CMD_JEDEC_ID (0x9F)
/* Read JEDEC ID */
#define CMD_ERASE_full (0xC7)
/* Chip Erase */
#define CMD_ERASE_64K (0xD8)
/* 64KB Block Erase */
#define CMD_MANU_ID (0x90)
#define DUMMY (0xFF)
#define FLASH_ERASE_CMD CMD_ERASE_4K
#define FLASH_BLOCK_SIZE 4096
#define FLASH_PAGE_SIZE 256
static
void
w25qxx_lock
(
struct
rt_mtd_nor_device
*
device
)
{
struct
spi_flash_mtd
*
mtd
=
(
struct
spi_flash_mtd
*
)
device
;
rt_mutex_take
(
&
mtd
->
lock
,
RT_WAITING_FOREVER
);
}
static
void
w25qxx_unlock
(
struct
rt_mtd_nor_device
*
device
)
{
struct
spi_flash_mtd
*
mtd
=
(
struct
spi_flash_mtd
*
)
device
;
rt_mutex_release
(
&
mtd
->
lock
);
}
static
rt_uint8_t
w25qxx_read_status
(
struct
rt_mtd_nor_device
*
device
)
{
struct
spi_flash_mtd
*
mtd
=
(
struct
spi_flash_mtd
*
)
device
;
return
rt_spi_sendrecv8
(
mtd
->
rt_spi_device
,
CMD_RDSR1
);
}
static
void
w25qxx_wait_busy
(
struct
rt_mtd_nor_device
*
device
)
{
while
(
w25qxx_read_status
(
device
)
&
(
0x01
));
}
static
rt_err_t
w25qxx_read_id
(
struct
rt_mtd_nor_device
*
device
)
{
rt_uint8_t
cmd
;
rt_uint8_t
id_recv
[
3
];
struct
spi_flash_mtd
*
mtd
=
(
struct
spi_flash_mtd
*
)
device
;
w25qxx_lock
(
device
);
cmd
=
0xFF
;
/* reset SPI FLASH, cancel all cmd in processing. */
rt_spi_send
(
mtd
->
rt_spi_device
,
&
cmd
,
1
);
cmd
=
CMD_WRDI
;
rt_spi_send
(
mtd
->
rt_spi_device
,
&
cmd
,
1
);
/* read flash id */
cmd
=
CMD_JEDEC_ID
;
rt_spi_send_then_recv
(
mtd
->
rt_spi_device
,
&
cmd
,
1
,
id_recv
,
3
);
w25qxx_unlock
(
device
);
return
(
rt_uint32_t
)(
id_recv
[
0
]
<<
16
)
|
(
id_recv
[
1
]
<<
8
)
|
id_recv
[
2
];
}
static
rt_size_t
w25qxx_read
(
struct
rt_mtd_nor_device
*
device
,
rt_off_t
offset
,
rt_uint8_t
*
buffer
,
rt_size_t
length
)
{
struct
spi_flash_mtd
*
mtd
=
(
struct
spi_flash_mtd
*
)
device
;
rt_uint8_t
send_buffer
[
4
];
if
((
offset
+
length
)
>
device
->
block_end
*
FLASH_BLOCK_SIZE
)
return
0
;
w25qxx_lock
(
device
);
send_buffer
[
0
]
=
CMD_WRDI
;
rt_spi_send
(
mtd
->
rt_spi_device
,
send_buffer
,
1
);
send_buffer
[
0
]
=
CMD_READ
;
send_buffer
[
1
]
=
(
rt_uint8_t
)(
offset
>>
16
);
send_buffer
[
2
]
=
(
rt_uint8_t
)(
offset
>>
8
);
send_buffer
[
3
]
=
(
rt_uint8_t
)(
offset
);
rt_spi_send_then_recv
(
mtd
->
rt_spi_device
,
send_buffer
,
4
,
buffer
,
length
);
w25qxx_unlock
(
device
);
return
length
;
}
static
rt_size_t
w25qxx_write
(
struct
rt_mtd_nor_device
*
device
,
rt_off_t
offset
,
const
rt_uint8_t
*
buffer
,
rt_size_t
length
)
{
struct
spi_flash_mtd
*
mtd
=
(
struct
spi_flash_mtd
*
)
device
;
rt_uint8_t
send_buffer
[
4
];
rt_uint8_t
*
write_ptr
;
rt_size_t
write_size
,
write_total
;
if
((
offset
+
length
)
>
device
->
block_end
*
FLASH_BLOCK_SIZE
)
return
0
;
w25qxx_lock
(
device
);
send_buffer
[
0
]
=
CMD_WREN
;
rt_spi_send
(
mtd
->
rt_spi_device
,
send_buffer
,
1
);
w25qxx_wait_busy
(
device
);
// wait erase done.
write_size
=
0
;
write_total
=
0
;
write_ptr
=
(
rt_uint8_t
*
)
buffer
;
while
(
write_total
<
length
)
{
send_buffer
[
0
]
=
CMD_WREN
;
rt_spi_send
(
mtd
->
rt_spi_device
,
send_buffer
,
1
);
//write first page...
send_buffer
[
0
]
=
CMD_PP
;
send_buffer
[
1
]
=
(
rt_uint8_t
)(
offset
>>
16
);
send_buffer
[
2
]
=
(
rt_uint8_t
)(
offset
>>
8
);
send_buffer
[
3
]
=
(
rt_uint8_t
)(
offset
);
//address % FLASH_PAGE_SIZE + length
if
(((
offset
&
(
FLASH_PAGE_SIZE
-
1
))
+
(
length
-
write_total
))
>
FLASH_PAGE_SIZE
)
{
write_size
=
FLASH_PAGE_SIZE
-
(
offset
&
(
FLASH_PAGE_SIZE
-
1
));
}
else
{
write_size
=
(
length
-
write_total
);
}
rt_spi_send_then_send
(
mtd
->
rt_spi_device
,
send_buffer
,
4
,
write_ptr
+
write_total
,
write_size
);
w25qxx_wait_busy
(
device
);
offset
+=
write_size
;
write_total
+=
write_size
;
}
send_buffer
[
0
]
=
CMD_WRDI
;
rt_spi_send
(
mtd
->
rt_spi_device
,
send_buffer
,
1
);
w25qxx_unlock
(
device
);
return
length
;
}
static
rt_err_t
w25qxx_erase_block
(
struct
rt_mtd_nor_device
*
device
,
rt_off_t
offset
,
rt_uint32_t
length
)
{
struct
spi_flash_mtd
*
mtd
=
(
struct
spi_flash_mtd
*
)
device
;
rt_uint8_t
send_buffer
[
4
];
rt_uint32_t
erase_size
=
0
;
//offset must be ALIGN_DOWN to BLOCKSIZE
if
(
offset
!=
RT_ALIGN_DOWN
(
offset
,
FLASH_BLOCK_SIZE
))
return
0
;
if
((
offset
+
length
)
>
device
->
block_end
*
FLASH_BLOCK_SIZE
)
return
0
;
/* check length must align to block size */
if
(
length
%
device
->
block_size
!=
0
)
{
rt_kprintf
(
"param length = %d ,error
\n
"
,
length
);
return
0
;
}
w25qxx_lock
(
device
);
send_buffer
[
0
]
=
CMD_WREN
;
rt_spi_send
(
mtd
->
rt_spi_device
,
send_buffer
,
1
);
w25qxx_wait_busy
(
device
);
// wait erase done.
while
(
erase_size
<
length
)
{
send_buffer
[
0
]
=
CMD_ERASE_4K
;
send_buffer
[
1
]
=
(
rt_uint8_t
)
(
offset
>>
16
);
send_buffer
[
2
]
=
(
rt_uint8_t
)
(
offset
>>
8
);
send_buffer
[
3
]
=
(
rt_uint8_t
)
(
offset
);
rt_spi_send
(
mtd
->
rt_spi_device
,
send_buffer
,
4
);
w25qxx_wait_busy
(
device
);
// wait erase done.
erase_size
+=
4096
;
offset
+=
4096
;
}
send_buffer
[
0
]
=
CMD_WRDI
;
rt_spi_send
(
mtd
->
rt_spi_device
,
send_buffer
,
1
);
w25qxx_unlock
(
device
);
return
RT_EOK
;
}
const
static
struct
rt_mtd_nor_driver_ops
w25qxx_mtd_ops
=
{
w25qxx_read_id
,
w25qxx_read
,
w25qxx_write
,
w25qxx_erase_block
,
};
rt_err_t
w25qxx_mtd_init
(
const
char
*
mtd_name
,
const
char
*
spi_device_name
)
{
rt_err_t
result
=
RT_EOK
;
rt_uint32_t
id
;
rt_uint8_t
send_buffer
[
3
];
struct
rt_spi_device
*
rt_spi_device
;
struct
spi_flash_mtd
*
mtd
=
(
struct
spi_flash_mtd
*
)
rt_malloc
(
sizeof
(
struct
spi_flash_mtd
));
RT_ASSERT
(
mtd
!=
RT_NULL
);
/* initialize mutex */
if
(
rt_mutex_init
(
&
mtd
->
lock
,
mtd_name
,
RT_IPC_FLAG_FIFO
)
!=
RT_EOK
)
{
FLASH_TRACE
(
"init mtd lock mutex failed
\n
"
);
result
=
-
RT_ENOSYS
;
goto
_error_exit
;
}
rt_spi_device
=
(
struct
rt_spi_device
*
)
rt_device_find
(
spi_device_name
);
if
(
rt_spi_device
==
RT_NULL
)
{
FLASH_TRACE
(
"spi device %s not found!
\r\n
"
,
spi_device_name
);
result
=
-
RT_ENOSYS
;
goto
_error_exit
;
}
mtd
->
rt_spi_device
=
rt_spi_device
;
/* config spi */
{
struct
rt_spi_configuration
cfg
;
cfg
.
data_width
=
8
;
cfg
.
mode
=
RT_SPI_MODE_0
|
RT_SPI_MSB
;
/* SPI Compatible: Mode 0 and Mode 3 */
cfg
.
max_hz
=
20
*
1000
*
1000
;
/* 20 */
rt_spi_configure
(
rt_spi_device
,
&
cfg
);
}
/* Init Flash device */
{
w25qxx_lock
(
&
mtd
->
mtd_device
);
send_buffer
[
0
]
=
CMD_WREN
;
rt_spi_send
(
mtd
->
rt_spi_device
,
send_buffer
,
1
);
w25qxx_wait_busy
(
&
mtd
->
mtd_device
);
send_buffer
[
0
]
=
CMD_WRSR
;
send_buffer
[
1
]
=
0
;
send_buffer
[
2
]
=
0
;
rt_spi_send
(
mtd
->
rt_spi_device
,
send_buffer
,
3
);
w25qxx_wait_busy
(
&
mtd
->
mtd_device
);
w25qxx_unlock
(
&
mtd
->
mtd_device
);
}
id
=
w25qxx_read_id
(
&
mtd
->
mtd_device
);
mtd
->
mtd_device
.
block_size
=
4096
;
mtd
->
mtd_device
.
block_start
=
0
;
switch
(
id
&
0xFFFF
)
{
case
MTC_W25Q80_BV
:
/* W25Q80BV */
mtd
->
mtd_device
.
block_end
=
256
;
break
;
case
MTC_W25Q16_BV_CL_CV
:
/* W25Q16BV W25Q16CL W25Q16CV */
case
MTC_W25Q16_DW
:
/* W25Q16DW */
mtd
->
mtd_device
.
block_end
=
512
;
break
;
case
MTC_W25Q32_BV
:
/* W25Q32BV */
case
MTC_W25Q32_DW
:
/* W25Q32DW */
mtd
->
mtd_device
.
block_end
=
1024
;
break
;
case
MTC_W25Q64_BV_CV
:
/* W25Q64BV W25Q64CV */
mtd
->
mtd_device
.
block_end
=
2048
;
break
;
case
MTC_W25Q128_BV
:
/* W25Q128BV */
mtd
->
mtd_device
.
block_end
=
4086
;
break
;
}
mtd
->
mtd_device
.
ops
=
&
w25qxx_mtd_ops
;
rt_mtd_nor_register_device
(
mtd_name
,
&
mtd
->
mtd_device
);
return
RT_EOK
;
_error_exit:
if
(
mtd
!=
RT_NULL
)
rt_free
(
mtd
);
return
result
;
}
components/drivers/spi/spi_flash_w25qxx_mtd.h
已删除
100644 → 0
浏览文件 @
c45f2f4c
/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2011-12-16 aozima the first version
* 2012-08-23 aozima add flash lock.
* 2017-02-11 urey add mtd fucntion
*/
#ifndef SPI_FLASH_W25QXX_H_INCLUDED
#define SPI_FLASH_W25QXX_H_INCLUDED
#include <rtthread.h>
extern
rt_err_t
w25qxx_mtd_init
(
const
char
*
mtd_name
,
const
char
*
spi_device_name
);
#endif // SPI_FLASH_W25QXX_H_INCLUDED
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录