los_rootfs.h 3.8 KB
Newer Older
W
wenjun 已提交
1
/*
M
mamingshuai 已提交
2 3
 * Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
 * Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
W
wenjun 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
 *
 * 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 of the copyright holder 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 HOLDER 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.
 */

#ifndef _LOS_ROOTFS_H
#define _LOS_ROOTFS_H

35
#include "los_typedef.h"
W
wenjun 已提交
36

37 38
#define ROOT_DIR_NAME           "/"
#define STORAGE_DIR_NAME        "/storage"
M
mamingshuai 已提交
39
#ifdef LOSCFG_STORAGE_EMMC
40
#define USERDATA_DIR_NAME       "/userdata"
J
jason_gitee 已提交
41 42 43
#ifdef LOSCFG_PLATFORM_PATCHFS
#define PATCH_DIR_NAME          "/patch"
#endif
W
wenjun 已提交
44
#endif
45 46
#define DEFAULT_MOUNT_DIR_MODE  0755
#define DEFAULT_MOUNT_DATA      NULL
W
wenjun 已提交
47

M
mamingshuai 已提交
48
#ifdef LOSCFG_STORAGE_SPINOR
W
wenjun 已提交
49
#define FLASH_TYPE              "spinor"
50 51 52 53 54 55
#define ROOT_DEV_NAME           "/dev/spinorblk0"
#define USER_DEV_NAME           "/dev/spinorblk2"
#define ROOTFS_ADDR             0x600000
#define ROOTFS_SIZE             0x800000
#define USERFS_SIZE             0x80000
#elif defined (LOSCFG_STORAGE_SPINAND)
M
mamingshuai 已提交
56
#define FLASH_TYPE              "nand"
57 58 59 60 61 62 63 64 65 66 67 68 69
#define ROOT_DEV_NAME           "/dev/nandblk0"
#define USER_DEV_NAME           "/dev/nandblk2"
#define ROOTFS_ADDR             0x600000
#define ROOTFS_SIZE             0x800000
#define USERFS_SIZE             0x80000
#elif defined (LOSCFG_PLATFORM_QEMU_ARM_VIRT_CA7)
#define ROOT_DEV_NAME           "/dev/cfiflash0"
#define USER_DEV_NAME           "/dev/cfiflash2"
#define ROOTFS_ADDR             CFIFLASH_ROOT_ADDR
#define ROOTFS_SIZE             0x1B00000
#define USERFS_SIZE             (CFIFLASH_CAPACITY - ROOTFS_ADDR - ROOTFS_SIZE)
#elif defined (LOSCFG_STORAGE_EMMC)
#define ROOT_DEV_NAME           "/dev/mmcblk0p0"
J
jason_gitee 已提交
70 71 72 73 74
#ifdef LOSCFG_PLATFORM_PATCHFS
#define PATCH_DEV_NAME          "/dev/mmcblk0p1"
#define USER_DEV_NAME           "/dev/mmcblk0p2"
#define USERDATA_DEV_NAME       "/dev/mmcblk0p3"
#else
75 76
#define USER_DEV_NAME           "/dev/mmcblk0p1"
#define USERDATA_DEV_NAME       "/dev/mmcblk0p2"
J
jason_gitee 已提交
77
#endif
78 79 80
#define ROOTFS_ADDR             0xA00000
#define ROOTFS_SIZE             0x1400000
#define USERFS_SIZE             0x3200000
J
jason_gitee 已提交
81 82 83
#ifdef LOSCFG_PLATFORM_PATCHFS
#define PATCH_SIZE              0x200000
#endif
84 85 86 87 88 89 90 91
#ifdef DEFAULT_MOUNT_DIR_MODE
#undef DEFAULT_MOUNT_DIR_MODE
#endif
#ifdef DEFAULT_MOUNT_DATA
#undef DEFAULT_MOUNT_DATA
#endif
#define DEFAULT_MOUNT_DIR_MODE  0777
#define DEFAULT_MOUNT_DATA      "umask=000"
M
mamingshuai 已提交
92
#endif
W
wenjun 已提交
93 94 95 96

INT32 OsMountRootfs(VOID);

#endif /* _LOS_ROOTFS_H */