Mauro Carvalho Chehab | dc7a12b | 2019-04-14 15:51:10 -0300 | [diff] [blame] | 1 | ======================== |
| 2 | SPEAr ARM Linux Overview |
| 3 | ======================== |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 4 | |
| 5 | Introduction |
| 6 | ------------ |
| 7 | |
| 8 | SPEAr (Structured Processor Enhanced Architecture). |
| 9 | weblink : http://www.st.com/spear |
| 10 | |
| 11 | The ST Microelectronics SPEAr range of ARM9/CortexA9 System-on-Chip CPUs are |
Viresh Kumar | 71e09a9 | 2012-04-20 22:39:48 +0530 | [diff] [blame] | 12 | supported by the 'spear' platform of ARM Linux. Currently SPEAr1310, |
| 13 | SPEAr1340, SPEAr300, SPEAr310, SPEAr320 and SPEAr600 SOCs are supported. |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 14 | |
| 15 | Hierarchy in SPEAr is as follows: |
| 16 | |
| 17 | SPEAr (Platform) |
Mauro Carvalho Chehab | 38cbfed | 2019-07-09 12:22:41 -0300 | [diff] [blame] | 18 | |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 19 | - SPEAr3XX (3XX SOC series, based on ARM9) |
| 20 | - SPEAr300 (SOC) |
Viresh Kumar | c5fa4fd | 2012-03-23 00:17:43 +0530 | [diff] [blame] | 21 | - SPEAr300 Evaluation Board |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 22 | - SPEAr310 (SOC) |
Viresh Kumar | c5fa4fd | 2012-03-23 00:17:43 +0530 | [diff] [blame] | 23 | - SPEAr310 Evaluation Board |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 24 | - SPEAr320 (SOC) |
Viresh Kumar | c5fa4fd | 2012-03-23 00:17:43 +0530 | [diff] [blame] | 25 | - SPEAr320 Evaluation Board |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 26 | - SPEAr6XX (6XX SOC series, based on ARM9) |
| 27 | - SPEAr600 (SOC) |
Viresh Kumar | c5fa4fd | 2012-03-23 00:17:43 +0530 | [diff] [blame] | 28 | - SPEAr600 Evaluation Board |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 29 | - SPEAr13XX (13XX SOC series, based on ARM CORTEXA9) |
Viresh Kumar | 71e09a9 | 2012-04-20 22:39:48 +0530 | [diff] [blame] | 30 | - SPEAr1310 (SOC) |
| 31 | - SPEAr1310 Evaluation Board |
| 32 | - SPEAr1340 (SOC) |
| 33 | - SPEAr1340 Evaluation Board |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 34 | |
Mauro Carvalho Chehab | dc7a12b | 2019-04-14 15:51:10 -0300 | [diff] [blame] | 35 | Configuration |
| 36 | ------------- |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 37 | |
| 38 | A generic configuration is provided for each machine, and can be used as the |
Mauro Carvalho Chehab | dc7a12b | 2019-04-14 15:51:10 -0300 | [diff] [blame] | 39 | default by:: |
| 40 | |
Viresh Kumar | 71e09a9 | 2012-04-20 22:39:48 +0530 | [diff] [blame] | 41 | make spear13xx_defconfig |
| 42 | make spear3xx_defconfig |
| 43 | make spear6xx_defconfig |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 44 | |
Mauro Carvalho Chehab | dc7a12b | 2019-04-14 15:51:10 -0300 | [diff] [blame] | 45 | Layout |
| 46 | ------ |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 47 | |
Viresh Kumar | 71e09a9 | 2012-04-20 22:39:48 +0530 | [diff] [blame] | 48 | The common files for multiple machine families (SPEAr3xx, SPEAr6xx and |
| 49 | SPEAr13xx) are located in the platform code contained in arch/arm/plat-spear |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 50 | with headers in plat/. |
| 51 | |
| 52 | Each machine series have a directory with name arch/arm/mach-spear followed by |
| 53 | series name. Like mach-spear3xx, mach-spear6xx and mach-spear13xx. |
| 54 | |
Viresh Kumar | 71e09a9 | 2012-04-20 22:39:48 +0530 | [diff] [blame] | 55 | Common file for machines of spear3xx family is mach-spear3xx/spear3xx.c, for |
| 56 | spear6xx is mach-spear6xx/spear6xx.c and for spear13xx family is |
| 57 | mach-spear13xx/spear13xx.c. mach-spear* also contain soc/machine specific |
| 58 | files, like spear1310.c, spear1340.c spear300.c, spear310.c, spear320.c and |
| 59 | spear600.c. mach-spear* doesn't contains board specific files as they fully |
| 60 | support Flattened Device Tree. |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 61 | |
| 62 | |
Mauro Carvalho Chehab | dc7a12b | 2019-04-14 15:51:10 -0300 | [diff] [blame] | 63 | Document Author |
| 64 | --------------- |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 65 | |
Viresh Kumar | da89947 | 2015-07-17 16:23:50 -0700 | [diff] [blame] | 66 | Viresh Kumar <vireshk@kernel.org>, (c) 2010-2012 ST Microelectronics |