Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
cm-projects
RIOT
Commits
3ecea173
Commit
3ecea173
authored
8 years ago
by
Hauke Petersen
Browse files
Options
Downloads
Patches
Plain Diff
cpu/msp430|cc430: removed old flashrom driver
parent
f5838ebe
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cpu/cc430/flashrom.c
+0
-74
0 additions, 74 deletions
cpu/cc430/flashrom.c
cpu/msp430fxyz/flashrom.c
+0
-110
0 additions, 110 deletions
cpu/msp430fxyz/flashrom.c
with
0 additions
and
184 deletions
cpu/cc430/flashrom.c
deleted
100644 → 0
+
0
−
74
View file @
f5838ebe
/*
* Copyright (C) 2014 INRIA
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup cc430
* @{
*/
/**
* @file
* @brief cc430 flashrom driver
*
* @author Kévin Roussel <Kevin.Roussel@inria.fr>
*/
#include
<stddef.h>
#include
<stdint.h>
#include
"cpu.h"
#include
"irq.h"
static
inline
uint8_t
prepare
(
void
);
static
inline
void
finish
(
uint8_t
istate
);
static
inline
void
busy_wait
(
void
);
/**
* @TODO implement this function
*/
uint8_t
flashrom_erase
(
uint8_t
*
addr
)
{
(
void
)
addr
;
return
0
;
}
/**
* @TODO implement this function
*/
uint8_t
flashrom_write
(
uint8_t
*
dst
,
const
uint8_t
*
src
,
size_t
size
)
{
(
void
)
dst
;
(
void
)
src
;
(
void
)
size
;
return
0
;
}
/**
* @TODO implement this function
*/
static
inline
uint8_t
prepare
(
void
)
{
return
0
;
}
/**
* @TODO implement this function
*/
static
inline
void
finish
(
uint8_t
istate
)
{
(
void
)
istate
;
}
static
inline
void
busy_wait
(
void
)
{
/* Wait for BUSY = 0, not needed unless run from RAM */
while
(
FCTL3
&
0x0001
)
{
nop
();
}
}
This diff is collapsed.
Click to expand it.
cpu/msp430fxyz/flashrom.c
deleted
100644 → 0
+
0
−
110
View file @
f5838ebe
/*
* Copyright (C) 2014 INRIA
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup cpu
* @{
*
* @file
* @brief MSP430Fxyz flashrom functions
*
* @author Oliver Hahm <oliver.hahm@inria.fr>
*
* @}
*/
#include
"irq.h"
#include
<stddef.h>
#include
<stdint.h>
#include
"cpu.h"
#include
"irq.h"
uint8_t
ie1
,
ie2
;
static
uint8_t
prepare
(
void
);
static
void
finish
(
uint8_t
istate
);
static
inline
void
busy_wait
(
void
);
/*---------------------------------------------------------------------------*/
uint8_t
flashrom_erase
(
uint8_t
*
addr
)
{
uint8_t
istate
=
prepare
();
FCTL3
=
FWKEY
;
/* Lock = 0 */
busy_wait
();
FCTL1
=
FWKEY
|
ERASE
;
*
addr
=
0
;
/* erase Flash segment */
busy_wait
();
FCTL1
=
FWKEY
;
/* ERASE = 0 */
FCTL3
=
FWKEY
|
LOCK
;
finish
(
istate
);
return
1
;
}
uint8_t
flashrom_write
(
uint8_t
*
dst
,
const
uint8_t
*
src
,
size_t
size
)
{
unsigned
int
i
;
FCTL3
=
FWKEY
;
/* Lock = 0 */
busy_wait
();
for
(
i
=
size
;
i
>
0
;
i
--
)
{
FCTL1
=
FWKEY
|
WRT
;
*
(
dst
++
)
=
*
(
src
++
);
/* program Flash word */
while
(
!
(
FCTL3
&
WAIT
))
{
nop
();
}
}
busy_wait
();
FCTL1
=
FWKEY
;
/* WRT = 0 */
FCTL3
=
FWKEY
|
LOCK
;
/* Lock = 1 */
return
1
;
}
/*---------------------------------------------------------------------------*/
static
uint8_t
prepare
(
void
)
{
uint8_t
istate
;
/* Disable all interrupts. */
/* Clear interrupt flag1. */
IFG1
=
0
;
/* DCO(SMCLK) is 2,4576MHz, /6 = 409600 Hz
select SMCLK for flash timing, divider 4+1 */
FCTL2
=
FWKEY
|
FSSEL_3
|
FN2
|
FN0
;
/* disable all interrupts to protect CPU
during programming from system crash */
istate
=
irq_disable
();
/* disable all NMI-Interrupt sources */
ie1
=
IE1
;
ie2
=
IE2
;
IE1
=
0x00
;
IE2
=
0x00
;
return
istate
;
}
/*---------------------------------------------------------------------------*/
void
finish
(
uint8_t
istate
)
{
/* Enable interrupts. */
IE1
=
ie1
;
IE2
=
ie2
;
irq_restore
(
istate
);
}
static
inline
void
busy_wait
(
void
)
{
/* Wait for BUSY = 0, not needed unless run from RAM */
while
(
FCTL3
&
0x0001
)
{
nop
();
}
}
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