Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lede-mikrotik
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johannes Rudolph
lede-mikrotik
Commits
28c4689e
Commit
28c4689e
authored
18 years ago
by
Florian Fainelli
Browse files
Options
Downloads
Patches
Plain Diff
backward compatible code, if ssb is not enabled
SVN-Revision: 6632
parent
86b6dab8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
target/linux/brcm47xx-2.6/files/drivers/mtd/maps/bcm47xx-flash.c
+12
-0
12 additions, 0 deletions
...linux/brcm47xx-2.6/files/drivers/mtd/maps/bcm47xx-flash.c
with
12 additions
and
0 deletions
target/linux/brcm47xx-2.6/files/drivers/mtd/maps/bcm47xx-flash.c
+
12
−
0
View file @
28c4689e
...
...
@@ -49,7 +49,9 @@
#include
<linux/squashfs_fs.h>
#include
<linux/jffs2.h>
#include
<linux/crc32.h>
#ifdef CONFIG_SSB
#include
<linux/ssb/ssb.h>
#endif
#include
<asm/io.h>
...
...
@@ -74,7 +76,9 @@ struct trx_header {
#define WINDOW_SIZE 0x400000
#define BUSWIDTH 2
#ifdef CONFIG_SSB
extern
struct
ssb_bus
ssb
;
#endif
static
struct
mtd_info
*
bcm947xx_mtd
;
static
struct
map_info
bcm947xx_map
=
{
...
...
@@ -385,13 +389,17 @@ init_mtd_partitions(struct mtd_info *mtd, size_t size)
int
__init
init_bcm947xx_map
(
void
)
{
#ifdef CONFIG_SSB
struct
ssb_mipscore
*
mcore
=
&
ssb
.
mipscore
;
#endif
size_t
size
;
int
ret
=
0
;
#ifdef CONFIG_MTD_PARTITIONS
struct
mtd_partition
*
parts
;
int
i
;
#endif
#ifdef CONFIG_SSB
u32
window
=
mcore
->
flash_window
;
u32
window_size
=
mcore
->
flash_window_size
;
...
...
@@ -399,6 +407,10 @@ int __init init_bcm947xx_map(void)
bcm947xx_map
.
phys
=
window
;
bcm947xx_map
.
size
=
window_size
;
bcm947xx_map
.
virt
=
ioremap_nocache
(
window
,
window_size
);
#else
printk
(
"flash init: 0x%08x 0x%08x
\n
"
,
WINDOW_ADDR
,
WINDOW_SIZE
);
bcm947xx_map
.
virt
=
ioremap_nocache
(
WINDOW_ADDR
,
WINDOW_SIZE
);
#endif
if
(
!
bcm947xx_map
.
virt
)
{
printk
(
"Failed to ioremap
\n
"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment