Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-boundary-uboot
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
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
Jack Humbert
reform-boundary-uboot
Commits
0c0eaee5
Commit
0c0eaee5
authored
7 years ago
by
Tom Rini
Browse files
Options
Downloads
Plain Diff
Merge
git://git.denx.de/u-boot-sh
parents
1c124d37
0b75cc3f
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
arch/sh/cpu/sh2/config.mk
+1
-1
1 addition, 1 deletion
arch/sh/cpu/sh2/config.mk
arch/sh/include/asm/string.h
+2
-31
2 additions, 31 deletions
arch/sh/include/asm/string.h
drivers/mmc/uniphier-sd.c
+5
-0
5 additions, 0 deletions
drivers/mmc/uniphier-sd.c
with
8 additions
and
32 deletions
arch/sh/cpu/sh2/config.mk
+
1
−
1
View file @
0c0eaee5
...
...
@@ -8,7 +8,7 @@
ENDIANNESS
+=
-EB
ifdef
CONFIG_CPU_SH2A
PLATFORM_CPPFLAGS
+=
-m2a
-m2a-nofpu
-mb
PLATFORM_CPPFLAGS
+=
-m2a-nofpu
-mb
else
# SH2
PLATFORM_CPPFLAGS
+=
-m3e
-mb
endif
...
...
This diff is collapsed.
Click to expand it.
arch/sh/include/asm/string.h
+
2
−
31
View file @
0c0eaee5
...
...
@@ -81,37 +81,8 @@ static inline int strcmp(const char *__cs, const char *__ct)
return
__res
;
}
#define __HAVE_ARCH_STRNCMP
static
inline
int
strncmp
(
const
char
*
__cs
,
const
char
*
__ct
,
size_t
__n
)
{
register
int
__res
;
unsigned
long
__dummy
;
if
(
__n
==
0
)
return
0
;
__asm__
__volatile__
(
"mov.b @%1+, %3
\n
"
"1:
\n\t
"
"mov.b @%0+, %2
\n\t
"
"cmp/eq %6, %0
\n\t
"
"bt/s 2f
\n\t
"
" cmp/eq #0, %3
\n\t
"
"bt/s 3f
\n\t
"
" cmp/eq %3, %2
\n\t
"
"bt/s 1b
\n\t
"
" mov.b @%1+, %3
\n\t
"
"add #-2, %1
\n\t
"
"mov.b @%1, %3
\n
"
"2:
\n\t
"
"sub %3, %2
\n
"
"3:"
:
"=r"
(
__cs
),
"=r"
(
__ct
),
"=&r"
(
__res
),
"=&z"
(
__dummy
)
:
"0"
(
__cs
),
"1"
(
__ct
),
"r"
(
__cs
+
__n
)
:
"t"
);
return
__res
;
}
#undef __HAVE_ARCH_STRNCMP
extern
int
strncmp
(
const
char
*
__cs
,
const
char
*
__ct
,
size_t
__n
);
#undef __HAVE_ARCH_MEMSET
extern
void
*
memset
(
void
*
__s
,
int
__c
,
size_t
__count
);
...
...
This diff is collapsed.
Click to expand it.
drivers/mmc/uniphier-sd.c
+
5
−
0
View file @
0c0eaee5
...
...
@@ -847,6 +847,11 @@ static int uniphier_sd_probe(struct udevice *dev)
}
static
const
struct
udevice_id
uniphier_sd_match
[]
=
{
{
.
compatible
=
"renesas,sdhi-r8a7790"
,
.
data
=
0
},
{
.
compatible
=
"renesas,sdhi-r8a7791"
,
.
data
=
0
},
{
.
compatible
=
"renesas,sdhi-r8a7792"
,
.
data
=
0
},
{
.
compatible
=
"renesas,sdhi-r8a7793"
,
.
data
=
0
},
{
.
compatible
=
"renesas,sdhi-r8a7794"
,
.
data
=
0
},
{
.
compatible
=
"renesas,sdhi-r8a7795"
,
.
data
=
UNIPHIER_SD_CAP_64BIT
},
{
.
compatible
=
"renesas,sdhi-r8a7796"
,
.
data
=
UNIPHIER_SD_CAP_64BIT
},
{
.
compatible
=
"renesas,sdhi-r8a77970"
,
.
data
=
UNIPHIER_SD_CAP_64BIT
},
...
...
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