Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
awilliam
GitHub Repository: awilliam/linux-vfio
Path: blob/master/arch/mips/lantiq/xway/mach-easy50601.c
10818 views
1
/*
2
* This program is free software; you can redistribute it and/or modify it
3
* under the terms of the GNU General Public License version 2 as published
4
* by the Free Software Foundation.
5
*
6
* Copyright (C) 2010 John Crispin <[email protected]>
7
*/
8
9
#include <linux/init.h>
10
#include <linux/platform_device.h>
11
#include <linux/mtd/mtd.h>
12
#include <linux/mtd/partitions.h>
13
#include <linux/mtd/physmap.h>
14
#include <linux/input.h>
15
16
#include <lantiq.h>
17
18
#include "../machtypes.h"
19
#include "devices.h"
20
21
static struct mtd_partition easy50601_partitions[] = {
22
{
23
.name = "uboot",
24
.offset = 0x0,
25
.size = 0x10000,
26
},
27
{
28
.name = "uboot_env",
29
.offset = 0x10000,
30
.size = 0x10000,
31
},
32
{
33
.name = "linux",
34
.offset = 0x20000,
35
.size = 0xE0000,
36
},
37
{
38
.name = "rootfs",
39
.offset = 0x100000,
40
.size = 0x300000,
41
},
42
};
43
44
static struct physmap_flash_data easy50601_flash_data = {
45
.nr_parts = ARRAY_SIZE(easy50601_partitions),
46
.parts = easy50601_partitions,
47
};
48
49
static void __init easy50601_init(void)
50
{
51
ltq_register_nor(&easy50601_flash_data);
52
}
53
54
MIPS_MACHINE(LTQ_MACH_EASY50601,
55
"EASY50601",
56
"EASY50601 Eval Board",
57
easy50601_init);
58
59