Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
a33b105e
Commit
a33b105e
authored
Mar 27, 2002
by
David Mosberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor tweaks for McKinley-optimized copy_page().
Fix configuration for HP Ski simulator.
parent
5b9c44cf
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
4 deletions
+16
-4
arch/ia64/hp/Config.in
arch/ia64/hp/Config.in
+9
-0
arch/ia64/hp/Makefile
arch/ia64/hp/Makefile
+3
-3
arch/ia64/lib/Makefile
arch/ia64/lib/Makefile
+3
-0
arch/ia64/lib/copy_page_mck.S
arch/ia64/lib/copy_page_mck.S
+1
-1
No files found.
arch/ia64/hp/Config.in
0 → 100644
View file @
a33b105e
mainmenu_option next_comment
comment 'HP Simulator drivers'
bool 'Simulated Ethernet ' CONFIG_HP_SIMETH
bool 'Simulated serial driver support' CONFIG_HP_SIMSERIAL
if [ "$CONFIG_SCSI" != "n" ]; then
bool 'Simulated SCSI disk' CONFIG_HP_SIMSCSI
fi
endmenu
arch/ia64/hp/Makefile
View file @
a33b105e
...
...
@@ -14,9 +14,9 @@ O_TARGET := hp.a
obj-y
:=
hpsim_console.o hpsim_irq.o hpsim_setup.o
obj-$(CONFIG_IA64_GENERIC)
+=
hpsim_machvec.o
obj-$(CONFIG_SIMETH)
+=
simeth.o
obj-$(CONFIG_
SIM_
SERIAL)
+=
simserial.o
obj-$(CONFIG_
SCSI_SIM)
+=
simscsi.o
obj-$(CONFIG_
HP_
SIMETH)
+=
simeth.o
obj-$(CONFIG_
HP_SIM
SERIAL)
+=
simserial.o
obj-$(CONFIG_
HP_SIMSCSI)
+=
simscsi.o
clean
::
...
...
arch/ia64/lib/Makefile
View file @
a33b105e
...
...
@@ -16,6 +16,9 @@ obj-y := __divsi3.o __udivsi3.o __modsi3.o __umodsi3.o \
flush.o io.o do_csum.o
\
memcpy.o memset.o strlen.o swiotlb.o
obj-$(CONFIG_ITANIUM)
+=
copy_page.o
obj-$(CONFIG_MCKINLEY)
+=
copy_page_mck.o
IGNORE_FLAGS_OBJS
=
__divsi3.o __udivsi3.o __modsi3.o __umodsi3.o
\
__divdi3.o __udivdi3.o __moddi3.o __umoddi3.o
...
...
arch/ia64/lib/copy_page_mck.S
View file @
a33b105e
...
...
@@ -43,7 +43,7 @@
*
*
When
reading
the
code
,
it
helps
to
keep
the
following
picture
in
mind
:
*
*
bank
0
bank
1
*
word
0
word
1
*
+------+------+---
*
| v[x] |
t1
|
^
*
| t2 |
t3
| |
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment