1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
|
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/arch/arm/config.in linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/config.in
--- linux-2.4.19-rmk7-pxa2.cvs/arch/arm/config.in Mon Sep 29 12:08:39 2003
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/config.in Wed Sep 10 17:37:40 2003
@@ -517,6 +517,7 @@ if [ "$CONFIG_ARCH_SA1100" = "y" -o \
fi
source drivers/pci/Config.in
+bool 'RTAI Realtime Hardware abstraction Layer' CONFIG_RTHAL
bool 'Support for hot-pluggable devices' CONFIG_HOTPLUG
if [ "$CONFIG_HOTPLUG" = "y" ]; then
source drivers/pcmcia/Config.in
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/arch/arm/defconfig linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/defconfig
--- linux-2.4.19-rmk7-pxa2.cvs/arch/arm/defconfig Mon Nov 5 09:04:53 2001
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/defconfig Wed Sep 10 17:37:40 2003
@@ -74,6 +74,7 @@ CONFIG_PCI=y
# CONFIG_ISA is not set
# CONFIG_ISA_DMA is not set
CONFIG_PCI_NAMES=y
+# CONFIG_RTHAL is not set
# CONFIG_HOTPLUG is not set
# CONFIG_PCMCIA is not set
CONFIG_NET=y
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/arch/arm/kernel/armksyms.c linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/kernel/armksyms.c
--- linux-2.4.19-rmk7-pxa2.cvs/arch/arm/kernel/armksyms.c Wed Aug 20 14:11:26 2003
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/kernel/armksyms.c Wed Sep 10 17:37:40 2003
@@ -20,6 +20,10 @@
#include <linux/interrupt.h>
#include <linux/pm.h>
#include <linux/vt_kern.h>
+#ifdef CONFIG_RTHAL
+#include <linux/console.h>
+#include <linux/sched.h>
+#endif
#include <asm/byteorder.h>
#include <asm/elf.h>
@@ -105,6 +109,10 @@ EXPORT_SYMBOL(kd_mksound);
EXPORT_SYMBOL_NOVERS(__do_softirq);
+#ifdef CONFIG_RTHAL
+EXPORT_SYMBOL(console_drivers);
+#endif
+
/* platform dependent support */
EXPORT_SYMBOL(dump_thread);
EXPORT_SYMBOL(dump_fpu);
@@ -252,10 +260,13 @@ EXPORT_SYMBOL(elf_platform);
EXPORT_SYMBOL(elf_hwcap);
/* syscalls */
+#ifndef CONFIG_RTHAL
+/* exported elsewhere when CONFIG_RTHAL is on */
EXPORT_SYMBOL(sys_write);
EXPORT_SYMBOL(sys_read);
-EXPORT_SYMBOL(sys_lseek);
EXPORT_SYMBOL(sys_open);
+#endif
+EXPORT_SYMBOL(sys_lseek);
EXPORT_SYMBOL(sys_exit);
EXPORT_SYMBOL(sys_wait4);
@@ -266,3 +277,11 @@ EXPORT_SYMBOL_NOVERS(__down_trylock_fail
EXPORT_SYMBOL_NOVERS(__up_wakeup);
EXPORT_SYMBOL(get_wchan);
+
+ /* RTAI */
+#ifdef CONFIG_RTHAL
+extern struct irqdesc irq_desc[NR_IRQS];
+EXPORT_SYMBOL(rthal);
+EXPORT_SYMBOL(irq_desc);
+EXPORT_SYMBOL(do_timer);
+#endif
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/arch/arm/kernel/entry-armv.S linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/kernel/entry-armv.S
--- linux-2.4.19-rmk7-pxa2.cvs/arch/arm/kernel/entry-armv.S Thu Sep 25 15:11:18 2003
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/kernel/entry-armv.S Wed Sep 10 17:37:40 2003
@@ -380,6 +380,11 @@ ENTRY(soft_irq_mask)
ands \irqstat, \irqstat, \irqnr
mov \irqnr, #0
beq 1001f
+#ifdef CONFIG_RTHAL
+ tst \irqstat, #1 << IRQ_OST0 @ check OSMR0 first
+ movne \irqnr, #IRQ_OST0
+ bne 1001f
+#endif
tst \irqstat, #0xff
moveq \irqstat, \irqstat, lsr #8
addeq \irqnr, \irqnr, #8
@@ -711,9 +716,8 @@ __dabt_svc: sub sp, sp, #S_FRAME_SIZE
msr cpsr_c, r9
mov r2, sp
bl SYMBOL_NAME(do_DataAbort)
- mov r0, #I_BIT | MODE_SVC
- msr cpsr_c, r0
- ldr r0, [sp, #S_PSR]
+ disable_irq r0 @ Yes, this disables interrupts - for
+ ldr r0, [sp, #S_PSR] @ the next 2 instructions. Safe.
msr spsr, r0
ldmia sp, {r0 - pc}^ @ load r0 - pc, cpsr
@@ -732,7 +736,12 @@ __irq_svc: sub sp, sp, #S_FRAME_SIZE
@ routine called with r0 = irq number, r1 = struct pt_regs *
@
adrsvc ne, lr, 1b
+#ifndef CONFIG_RTHAL
bne asm_do_IRQ
+#else
+ ldrne r7, .rthal @ load pointer rthal
+ ldrne pc, [r7, #0] @ branch to rthal.do_IRQ (1st in RTHAL)
+#endif
ldr r0, [sp, #S_PSR] @ irqs are already disabled
msr spsr, r0
ldmia sp, {r0 - pc}^ @ load r0 - pc, cpsr
@@ -749,6 +758,19 @@ __und_svc: sub sp, sp, #S_FRAME_SIZE
add r4, sp, #S_SP
stmia r4, {r5 - r9} @ save sp_SVC, lr_SVC, pc, cpsr, old_ro
+#ifdef CONFIG_RTHAL
+ ldr r7, .rthal @ load pointer rthal
+ ldr r7, [r7, #8] @ load pointer rthal.do_TRAP (3rd in RTHAL)
+ cmp r7, #0
+ beq 2f
+ mov r0, #4 @ SIGILL
+ mov r1, sp @ struct pt_regs *regs
+ mov lr, pc
+ mov pc, r7 @ check, if this is a relevant code
+ cmp r0, #0 @ check return value
+ beq 1f @ else let linux do what it has to do
+2:
+#endif
adrsvc al, r9, 1f @ r9 = normal FP return
bl call_fpe @ lr = undefined instr return
@@ -756,8 +778,7 @@ __und_svc: sub sp, sp, #S_FRAME_SIZE
mov r1, sp @ struct pt_regs *regs
bl SYMBOL_NAME(do_undefinstr)
-1: mov r0, #I_BIT | MODE_SVC
- msr cpsr_c, r0
+1: disable_irq r0
ldr lr, [sp, #S_PSR] @ Get SVC cpsr
msr spsr, lr
ldmia sp, {r0 - pc}^ @ Restore SVC registers
@@ -778,8 +799,7 @@ __pabt_svc: sub sp, sp, #S_FRAME_SIZE
mov r0, r2 @ address (pc)
mov r1, sp @ regs
bl SYMBOL_NAME(do_PrefetchAbort) @ call abort handler
- mov r0, #I_BIT | MODE_SVC
- msr cpsr_c, r0
+ disable_irq r0
ldr r0, [sp, #S_PSR]
msr spsr, r0
ldmia sp, {r0 - pc}^ @ load r0 - pc, cpsr
@@ -791,6 +811,9 @@ __pabt_svc: sub sp, sp, #S_FRAME_SIZE
#ifdef MULTI_CPU
.LCprocfns: .word SYMBOL_NAME(processor)
#endif
+#ifdef CONFIG_RTHAL
+.rthal: .word SYMBOL_NAME(rthal)
+#endif
.LCfp: .word SYMBOL_NAME(fp_enter)
irq_prio_table
@@ -816,8 +839,7 @@ __dabt_usr: sub sp, sp, #S_FRAME_SIZE @
#else
bl cpu_data_abort
#endif
- mov r2, #MODE_SVC
- msr cpsr_c, r2 @ Enable interrupts
+ enable_irq r2 @ Enable interrupts
mov r2, sp
adrsvc al, lr, ret_from_exception
b SYMBOL_NAME(do_DataAbort)
@@ -838,7 +860,13 @@ __irq_usr: sub sp, sp, #S_FRAME_SIZE
@
@ routine called with r0 = irq number, r1 = struct pt_regs *
@
+#ifndef CONFIG_RTHAL
bne asm_do_IRQ
+#else
+ ldrne r7, .rthal @ load pointer rthal
+ ldrne pc, [r7, #0] @ branch to rthal.do_IRQ (1st in RTHAL)
+ disable_irq r7 @ we do not disable IRQs in dispatch_irq - do it here
+#endif
mov why, #0
get_current_task tsk
b ret_to_user
@@ -867,8 +895,7 @@ call_fpe: get_current_task r10
add r10, r10, #TSS_FPESAVE @ r10 = workspace
ldr pc, [r4] @ Call FP module USR entry point
-fpundefinstr: mov r0, #MODE_SVC
- msr cpsr_c, r0 @ Enable interrupts
+fpundefinstr: enable_irq r0 @ Enable interrupts
mov r0, lr
mov r1, sp
adrsvc al, lr, ret_from_exception
@@ -884,8 +911,7 @@ __pabt_usr: sub sp, sp, #S_FRAME_SIZE @
stmdb r8, {sp, lr}^ @ Save sp_usr lr_usr
alignment_trap r4, r7, __temp_abt
zero_fp
- mov r0, #MODE_SVC
- msr cpsr_c, r0 @ Enable interrupts
+ enable_irq r0 @ Enable interrupts
mov r0, r5 @ address (pc)
mov r1, sp @ regs
bl SYMBOL_NAME(do_PrefetchAbort) @ call abort handler
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/arch/arm/kernel/entry-common.S linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/kernel/entry-common.S
--- linux-2.4.19-rmk7-pxa2.cvs/arch/arm/kernel/entry-common.S Wed Aug 20 14:11:26 2003
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/kernel/entry-common.S Wed Sep 10 17:37:40 2003
@@ -53,7 +53,11 @@ slow: str r0, [sp, #S_R0+S_OFF]! @ retur
* "slow" syscall return path. "why" tells us if this was a real syscall.
*/
reschedule:
+#ifndef CONFIG_RTHAL
bl SYMBOL_NAME(schedule)
+#else
+ bl SYMBOL_NAME(rt_wrap_schedule)
+#endif
ret_disable_irq:
disable_irq r1 @ ensure IRQs are disabled
ENTRY(ret_to_user)
@@ -72,7 +76,11 @@ __do_signal:
mov r0, #0 @ NULL 'oldset'
mov r1, sp @ 'regs'
mov r2, why @ 'syscall'
+#ifndef CONFIG_RTHAL
bl SYMBOL_NAME(do_signal) @ note the bl above sets lr
+#else
+ bl SYMBOL_NAME(rt_wrap_do_signal) @ note the bl above sets lr
+#endif
disable_irq r1 @ ensure IRQs are disabled
b restore
@@ -90,7 +98,11 @@ ENTRY(ret_from_fork)
beq ret_disable_irq
mov r1, sp
mov r0, #1 @ trace exit [IP = 1]
+#ifndef CONFIG_RTHAL
bl SYMBOL_NAME(syscall_trace)
+#else
+ bl SYMBOL_NAME(rt_wrap_syscall_trace)
+#endif
b ret_disable_irq
@@ -145,6 +157,11 @@ ENTRY(vector_swi)
get_current_task tsk
ldr ip, [tsk, #TSK_PTRACE] @ check for syscall tracing
bic scno, scno, #0xff000000 @ mask off SWI op-code
+#ifdef CONFIG_RTHAL
+ ldr tbl, .rtai_magic @ check for RTAI SRQ
+ cmp scno, tbl @ (use tbl for scratch)
+ beq 4f
+#endif
eor scno, scno, #OS_NUMBER << 20 @ check OS number
adr tbl, sys_call_table @ load syscall table pointer
tst ip, #PT_TRACESYS @ are we tracing syscalls?
@@ -160,6 +177,20 @@ ENTRY(vector_swi)
eor r0, scno, #OS_NUMBER << 20 @ put OS number back
bcs SYMBOL_NAME(arm_syscall)
b SYMBOL_NAME(sys_ni_syscall) @ not private func
+
+#ifdef CONFIG_RTHAL
+4: ldr r7, .rthal @ load pointer to rthal
+ ldr r7, [r7, #4] @ load pointer to do_SRQ, [rthal+4]
+ cmp r7, #0
+ movne lr, pc @ call ...
+ movne pc, r7 @ ... if available
+ str r0, [sp, #S_R0 + S_OFF] @ save returned r0
+ str r1, [sp, #S_R1 + S_OFF] @ save returned r1
+ add sp, sp, #S_OFF @ hmm, leave anyway
+ b restore
+.rtai_magic: .word 0x404404 @ RTAI SRQ MAGIC
+.rthal: .word SYMBOL_NAME(rthal) @ RTHAL
+#endif
/*
* This is the really slow path. We're going to be doing
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/arch/arm/kernel/irq.c linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/kernel/irq.c
--- linux-2.4.19-rmk7-pxa2.cvs/arch/arm/kernel/irq.c Wed Aug 20 14:11:26 2003
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/kernel/irq.c Fri Sep 19 11:01:51 2003
@@ -674,3 +674,181 @@ void __init init_IRQ(void)
init_arch_irq();
init_dma();
}
+
+#ifdef CONFIG_RTHAL
+/*
+ * RTAI
+ * This is the most appropriate place to setup rthal.
+ */
+static void linux_cli(void)
+{
+ hard_local_irq_disable();
+}
+
+static void linux_sti(void)
+{
+ hard_local_irq_enable();
+}
+
+static unsigned int linux_save_flags(void)
+{
+ int flags;
+ hard_local_save_flags(flags);
+ return flags;
+}
+
+static unsigned int linux_save_flags_cli(void)
+{
+ int flags;
+ hard_local_irq_save(flags);
+ return flags;
+}
+
+static void linux_restore_flags(unsigned int flags)
+{
+ hard_local_irq_restore(flags);
+}
+
+static void linux_fcli(void)
+{
+ hard_clf();
+}
+
+static void linux_fsti(void)
+{
+ hard_stf();
+}
+
+volatile struct rt_hal rthal = {
+ .do_IRQ = asm_do_IRQ, /* irq-dispatcher */
+ .do_SRQ = NULL, /* srq-dispatcher */
+ .do_TRAP = NULL, /* trap-handler */
+ .disint = linux_cli,
+ .enint = linux_sti,
+ .getflags = linux_save_flags,
+ .setflags = linux_restore_flags,
+ .getflags_and_cli = linux_save_flags_cli,
+ .fdisint = linux_fcli,
+ .fenint = linux_fsti,
+ .copy_back = NULL, /* copy linux-flags back, don't deliver pending interrupts */
+ .c_do_IRQ = do_IRQ,
+};
+
+/* Wrappers for entry-common.S
+ * Assumption: the only exceptions, allowed in rt-context,
+ * are interrupts and traps (e.g. floating point emulation),
+ * which are processed accordingly. All the rest can happen
+ * only in Linux. Which means, that interrupts before the
+ * exception were hard-enabled, the state of soft I-bit is
+ * unknown.
+ * Concept - all these wrappers are called on the path:
+ * - exception
+ * (possibly, enable interrupts)
+ * - call a Linux C-function, which might schedule, sleep,
+ * change interrupt-status
+ * - return to asm
+ * (possibly, chenge interupt status)
+ * - switch back to where exception occured
+ * So, the wrappers do:
+ * - modify Linux I-bit according to the current hard I-bit
+ * - hard enable interrupts
+ * - call the wrapped function
+ * - save the current Linux I-bit to the hard I-bit
+ * - restore Linux I-bit state from before-wrapping
+ * (emulate return from exception)
+ */
+
+extern asmlinkage int do_signal(sigset_t *oldset, struct pt_regs *regs, int syscall);
+extern asmlinkage void syscall_trace(int why, struct pt_regs *regs);
+asmlinkage void rt_wrap_schedule(void)
+{
+ unsigned long flags;
+ unsigned long i_bit = 0, linux_i_bit = 0;
+
+ if (rthal.do_IRQ != asm_do_IRQ) {
+ hard_save_flags(flags);
+ i_bit = flags & I_BIT;
+ linux_i_bit = rthal.getflags() & I_BIT;
+ if (i_bit) {
+ if (! linux_i_bit)
+ rthal.disint();
+ hard_sti();
+ } else if (linux_i_bit)
+ rthal.enint();
+ }
+ schedule();
+ if (rthal.do_IRQ != asm_do_IRQ) {
+ hard_save_flags(flags);
+ if (flags & I_BIT) {
+ hard_sti();
+ BUG();
+ }
+
+ if (rthal.getflags() & I_BIT)
+ hard_cli();
+ rthal.copy_back(linux_i_bit, 0);
+ }
+}
+
+asmlinkage void rt_wrap_syscall_trace(int why, struct pt_regs *regs)
+{
+ unsigned long flags;
+ unsigned long i_bit = 0, linux_i_bit = 0;
+
+ if (rthal.do_IRQ != asm_do_IRQ) {
+ hard_save_flags(flags);
+ i_bit = flags & I_BIT;
+ linux_i_bit = rthal.getflags() & I_BIT;
+ if (i_bit) {
+ if (! linux_i_bit)
+ rthal.disint();
+ hard_sti();
+ } else if (linux_i_bit)
+ rthal.enint();
+ }
+ syscall_trace(why, regs);
+ if (rthal.do_IRQ != asm_do_IRQ) {
+ hard_save_flags(flags);
+ if (flags & I_BIT) {
+ hard_sti();
+ BUG();
+ }
+
+ if (rthal.getflags() & I_BIT)
+ hard_cli();
+ rthal.copy_back(linux_i_bit, 0);
+ }
+}
+
+asmlinkage int rt_wrap_do_signal(sigset_t *oldset, struct pt_regs *regs, int syscall)
+{
+ unsigned long flags;
+ unsigned long i_bit = 0, linux_i_bit = 0;
+ int ret;
+
+ if (rthal.do_IRQ != asm_do_IRQ) {
+ hard_save_flags(flags);
+ i_bit = flags & I_BIT;
+ linux_i_bit = rthal.getflags() & I_BIT;
+ if (i_bit) {
+ if (! linux_i_bit)
+ rthal.disint();
+ hard_sti();
+ } else if (linux_i_bit)
+ rthal.enint();
+ }
+ ret = do_signal(oldset, regs, syscall);
+ if (rthal.do_IRQ != asm_do_IRQ) {
+ hard_save_flags(flags);
+ if (flags & I_BIT) {
+ hard_sti();
+ BUG();
+ }
+
+ if (rthal.getflags() & I_BIT)
+ hard_cli();
+ rthal.copy_back(linux_i_bit, 0);
+ }
+ return ret;
+}
+#endif
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/arch/arm/mach-pxa/cpu-pxa.c linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/mach-pxa/cpu-pxa.c
--- linux-2.4.19-rmk7-pxa2.cvs/arch/arm/mach-pxa/cpu-pxa.c Thu Sep 25 15:11:18 2003
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/mach-pxa/cpu-pxa.c Wed Sep 10 17:40:23 2003
@@ -152,7 +152,11 @@ static void pxa_setspeed(unsigned int kh
printk(KERN_INFO "Changing CPU frequency to %d Mhz (PXbus=%dMhz).\n",
khz/1000, freq_info->pxbus);
+#ifndef CONFIG_RTHAL
local_irq_save(flags);
+#else
+ hard_local_irq_save(flags);
+#endif
__asm__ __volatile__("\
ldr r4, [%1] @load MDREFR \n\
b 2f \n\
@@ -183,7 +187,11 @@ static void pxa_setspeed(unsigned int kh
: "=&r" (unused)
: "r" (&MDREFR), "r" (CCLKCFG_TURBO|CCLKCFG_FCS), "r" (ramstart)
: "r4", "r5");
+#ifndef CONFIG_RTHAL
local_irq_restore(flags);
+#else
+ hard_local_irq_restore(flags);
+#endif
}
static int pxa_init_freqs( void)
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/arch/arm/mach-pxa/generic.c linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/mach-pxa/generic.c
--- linux-2.4.19-rmk7-pxa2.cvs/arch/arm/mach-pxa/generic.c Thu Sep 25 15:11:18 2003
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/mach-pxa/generic.c Wed Sep 10 17:37:40 2003
@@ -108,14 +108,22 @@ void set_GPIO_mode(int gpio_mode)
int fn = (gpio_mode & GPIO_MD_MASK_FN) >> 8;
int gafr;
+#ifndef CONFIG_RTHAL
local_irq_save(flags);
+#else
+ hard_local_irq_save(flags);
+#endif
if (gpio_mode & GPIO_MD_MASK_DIR)
GPDR(gpio) |= GPIO_bit(gpio);
else
GPDR(gpio) &= ~GPIO_bit(gpio);
gafr = GAFR(gpio) & ~(0x3 << (((gpio) & 0xf)*2));
GAFR(gpio) = gafr | (fn << (((gpio) & 0xf)*2));
+#ifndef CONFIG_RTHAL
local_irq_restore(flags);
+#else
+ hard_local_irq_restore(flags);
+#endif
}
EXPORT_SYMBOL(set_GPIO_mode);
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/arch/arm/mach-pxa/irq.c linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/mach-pxa/irq.c
--- linux-2.4.19-rmk7-pxa2.cvs/arch/arm/mach-pxa/irq.c Thu Sep 25 15:11:18 2003
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/mach-pxa/irq.c Fri Sep 26 16:04:44 2003
@@ -64,11 +64,13 @@
static void pxa_mask_irq(unsigned int irq)
{
ICMR &= ~(1 << (irq + PXA_IRQ_SKIP));
+ irq_desc[irq].masked = 1;
}
static void pxa_unmask_irq(unsigned int irq)
{
ICMR |= (1 << (irq + PXA_IRQ_SKIP));
+ irq_desc[irq].masked = 0;
}
/*
@@ -79,11 +81,13 @@
{
ICMR &= ~(1 << (irq + PXA_IRQ_SKIP));
GEDR0 = (1 << (irq - IRQ_GPIO0));
+ irq_desc[irq].masked = 1;
}
static void pxa_mask_GPIO_0_1_irq(unsigned int irq)
{
ICMR &= ~(1 << (irq + PXA_IRQ_SKIP));
+ irq_desc[irq].masked = 1;
}
static void pxa_unmask_GPIO_0_1_irq(unsigned int irq)
@@ -92,6 +96,7 @@
GRER0 = (GRER0 & ~(1 << gpio))|(GPIO_IRQ_rising_edge[0] & (1 << gpio));
GFER0 = (GFER0 & ~(1 << gpio))|(GPIO_IRQ_falling_edge[0] & (1 << gpio));
ICMR |= (1 << (irq + PXA_IRQ_SKIP));
+ irq_desc[irq].masked = 0;
}
/*
@@ -101,8 +106,10 @@
static int GPIO_2_80_enabled[3]; /* enabled i.e. unmasked GPIO IRQs */
static int GPIO_2_80_spurious[3]; /* GPIOs that triggered when masked */
-static void pxa_GPIO_2_80_demux(int irq, void *dev_id,
- struct pt_regs *regs)
+#ifndef CONFIG_RTHAL
+static
+#endif
+void pxa_GPIO_2_80_demux(int irq, void *dev_id, struct pt_regs *regs)
{
int i, gedr, spurious;
@@ -127,8 +134,15 @@
}
for (i = 2; i < 32; ++i) {
+#ifndef CONFIG_RTHAL
if (gedr & (1<<i)) {
do_IRQ (IRQ_GPIO(2) + i - 2, regs);
+#else
+ if ((gedr = (GEDR0 & ~3)) & (1<<i)) {
+ pxa_unmask_irq(IRQ_GPIO_2_80);
+ rthal.c_do_IRQ(IRQ_GPIO(2) + i - 2, regs);
+ break;
+#endif
}
}
}
@@ -144,8 +158,15 @@
}
for (i = 0; i < 32; ++i) {
+#ifndef CONFIG_RTHAL
if (gedr & (1<<i)) {
do_IRQ (IRQ_GPIO(32) + i, regs);
+#else
+ if ((gedr = GEDR1) & (1<<i)) {
+ pxa_unmask_irq(IRQ_GPIO_2_80);
+ rthal.c_do_IRQ(IRQ_GPIO(32) + i, regs);
+ break;
+#endif
}
}
}
@@ -161,8 +182,15 @@
}
for (i = 0; i < 17; ++i) {
+#ifndef CONFIG_RTHAL
if (gedr & (1<<i)) {
do_IRQ (IRQ_GPIO(64) + i, regs);
+#else
+ if ((gedr = (GEDR2 & 0x0001ffff)) & (1<<i)) {
+ pxa_unmask_irq(IRQ_GPIO_2_80);
+ rthal.c_do_IRQ(IRQ_GPIO(64) + i, regs);
+ break;
+#endif
}
}
}
@@ -184,9 +212,18 @@
int gpio_nr = IRQ_TO_GPIO_2_80(irq);
int mask = 1 << (gpio_nr & 0x1f);
int index = gpio_nr >> 5;
+#ifdef CONFIG_RTHAL
+ unsigned long flags;
+
+ hard_save_flags_cli(flags);
+#endif
GPIO_2_80_spurious[index] &= ~mask;
GPIO_2_80_enabled[index] &= ~mask;
GEDR_x(index) = mask;
+ irq_desc[irq].masked = 1;
+#ifdef CONFIG_RTHAL
+ hard_restore_flags(flags);
+#endif
}
static void pxa_mask_GPIO_2_80_irq(unsigned int irq)
@@ -194,8 +231,17 @@
int gpio_nr = IRQ_TO_GPIO_2_80(irq);
int mask = 1 << (gpio_nr & 0x1f);
int index = gpio_nr >> 5;
+#ifdef CONFIG_RTHAL
+ unsigned long flags;
+
+ hard_save_flags_cli(flags);
+#endif
GPIO_2_80_spurious[index] &= ~mask;
GPIO_2_80_enabled[index] &= ~mask;
+ irq_desc[irq].masked = 1;
+#ifdef CONFIG_RTHAL
+ hard_restore_flags(flags);
+#endif
}
static void pxa_unmask_GPIO_2_80_irq(unsigned int irq)
@@ -203,20 +249,35 @@
int gpio_nr = IRQ_TO_GPIO_2_80(irq);
int mask = 1 << (gpio_nr & 0x1f);
int index = gpio_nr >> 5;
+#ifdef CONFIG_RTHAL
+ unsigned long flags;
+
+ hard_save_flags_cli(flags);
+#endif
if (GPIO_2_80_spurious[index] & mask) {
/*
* We don't want to miss an interrupt that would have occurred
* while it was masked. Simulate it if it is the case.
*/
int state = GPLR_x(index);
+// printk(KERN_ERR"Emulating GPIO IRQ %d\n", irq);
if (((state & GPIO_IRQ_rising_edge[index]) |
(~state & GPIO_IRQ_falling_edge[index])) & mask)
{
/* just in case it gets referenced: */
struct pt_regs dummy;
+#ifdef CONFIG_RTHAL
+ hard_restore_flags(flags);
+#endif
memzero(&dummy, sizeof(dummy));
- do_IRQ(irq, &dummy);
+#ifndef CONFIG_RTHAL
+ do_IRQ(irq, &dummy);
+#else
+ hard_cli();
+ rthal.c_do_IRQ(irq, &dummy);
+ hard_restore_flags(flags);
+#endif
/* we are being called recursively from do_IRQ() */
return;
@@ -227,6 +288,10 @@
(GRER_x(index) & ~mask) | (GPIO_IRQ_rising_edge[index] & mask);
GFER_x(index) =
(GFER_x(index) & ~mask) | (GPIO_IRQ_falling_edge[index] & mask);
+ irq_desc[irq].masked = 0;
+#ifdef CONFIG_RTHAL
+ hard_restore_flags(flags);
+#endif
}
@@ -256,6 +321,7 @@
irq_desc[irq].mask_ack = pxa_mask_irq;
irq_desc[irq].mask = pxa_mask_irq;
irq_desc[irq].unmask = pxa_unmask_irq;
+ irq_desc[irq].masked = 0;
}
/*
@@ -269,6 +335,7 @@
irq_desc[irq].mask_ack = pxa_mask_and_ack_GPIO_0_1_irq;
irq_desc[irq].mask = pxa_mask_GPIO_0_1_irq;
irq_desc[irq].unmask = pxa_unmask_GPIO_0_1_irq;
+ irq_desc[irq].masked = 0;
}
for (irq = IRQ_GPIO(2); irq <= IRQ_GPIO(80); irq++) {
@@ -277,6 +344,11 @@
irq_desc[irq].mask_ack = pxa_mask_and_ack_GPIO_2_80_irq;
irq_desc[irq].mask = pxa_mask_GPIO_2_80_irq;
irq_desc[irq].unmask = pxa_unmask_GPIO_2_80_irq;
+ irq_desc[irq].masked = 0;
}
setup_arm_irq( IRQ_GPIO_2_80, &GPIO_2_80_irqaction );
}
+
+#ifdef CONFIG_RTHAL
+EXPORT_SYMBOL(pxa_GPIO_2_80_demux);
+#endif
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/arch/arm/mm/ioremap.c linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/mm/ioremap.c
--- linux-2.4.19-rmk7-pxa2.cvs/arch/arm/mm/ioremap.c Wed Aug 20 14:11:27 2003
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/mm/ioremap.c Wed Sep 10 17:37:40 2003
@@ -107,6 +107,9 @@ remap_area_pages(unsigned long address,
if (remap_area_pmd(pmd, address, end - address,
pfn + (address >> PAGE_SHIFT), flags))
break;
+#ifdef CONFIG_RTHAL
+ set_pgdir(address, *dir);
+#endif
error = 0;
address = (address + PGDIR_SIZE) & PGDIR_MASK;
dir++;
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/arch/arm/nwfpe/fpa11.c linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/nwfpe/fpa11.c
--- linux-2.4.19-rmk7-pxa2.cvs/arch/arm/nwfpe/fpa11.c Mon Aug 5 14:00:36 2002
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/arch/arm/nwfpe/fpa11.c Thu Sep 25 16:59:37 2003
@@ -132,7 +132,15 @@ unsigned int EmulateAll(unsigned int opc
unsigned int nRc = 0;
unsigned long flags;
FPA11 *fpa11;
+#ifndef CONFIG_RTHAL
save_flags(flags); sti();
+#else
+ unsigned long hflags;
+ hard_save_flags(hflags);
+ save_flags(flags);
+ hard_sti();
+ sti();
+#endif
fpa11 = GET_FPA11();
@@ -169,6 +177,10 @@ unsigned int EmulateAll(unsigned int opc
nRc = 0;
}
+#ifdef CONFIG_RTHAL
+ hard_restore_flags(hflags);
+ if (flags & I_BIT)
+#endif
restore_flags(flags);
return(nRc);
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/include/asm-arm/arch-pxa/irq.h linux-2.4.19-rmk7-pxa2-rthal5.clean/include/asm-arm/arch-pxa/irq.h
--- linux-2.4.19-rmk7-pxa2.cvs/include/asm-arm/arch-pxa/irq.h Thu Sep 25 15:11:19 2003
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/include/asm-arm/arch-pxa/irq.h Wed Sep 10 17:42:02 2003
@@ -17,3 +17,7 @@
* Since it doesn't exist elsewhere, we'll put it here for now.
*/
extern void do_IRQ(int irq, struct pt_regs *regs);
+#ifdef CONFIG_RTHAL
+extern void pxa_GPIO_2_80_demux(int irq, void *dev_id, struct pt_regs *regs);
+#endif
+
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/include/asm-arm/arch-pxa/time.h linux-2.4.19-rmk7-pxa2-rthal5.clean/include/asm-arm/arch-pxa/time.h
--- linux-2.4.19-rmk7-pxa2.cvs/include/asm-arm/arch-pxa/time.h Thu Sep 25 15:11:19 2003
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/include/asm-arm/arch-pxa/time.h Wed Sep 10 17:42:12 2003
@@ -36,7 +36,11 @@ static unsigned long pxa_gettimeoffset (
unsigned long ticks_to_match, elapsed, usec;
/* Get ticks before next timer match */
+#ifndef CONFIG_RTHAL
ticks_to_match = OSMR0 - OSCR;
+#else
+ ticks_to_match = rthal.timer_match - OSCR;
+#endif
/* We need elapsed ticks since last match */
elapsed = LATCH - ticks_to_match;
@@ -67,6 +71,9 @@ static void pxa_timer_interrupt(int irq,
do_timer(regs);
OSSR = OSSR_M0; /* Clear match on timer 0 */
next_match = (OSMR0 += LATCH);
+#ifdef CONFIG_RTHAL
+ rthal.timer_match = next_match;
+#endif
restore_flags( flags );
} while( (signed long)(next_match - OSCR) <= 0 );
}
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/include/asm-arm/atomic.h linux-2.4.19-rmk7-pxa2-rthal5.clean/include/asm-arm/atomic.h
--- linux-2.4.19-rmk7-pxa2.cvs/include/asm-arm/atomic.h Wed Aug 20 14:11:30 2003
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/include/asm-arm/atomic.h Wed Sep 10 17:41:40 2003
@@ -27,7 +27,18 @@ typedef struct { volatile int counter; }
#define ATOMIC_INIT(i) { (i) }
#ifdef __KERNEL__
+
+#ifdef CONFIG_RTHAL
+/* RTAI Modification, azu */
+#include <asm/proc/hard_system.h>
+#define _atomic_irq_save(x) hard_local_irq_save(x)
+#define _atomic_irq_restore(x) hard_local_irq_restore(x)
+#else
+/* Normal mode */
#include <asm/proc/system.h>
+#define _atomic_irq_save(x) local_irq_save(x)
+#define _atomic_irq_restore(x) local_irq_restore(x)
+#endif
#define atomic_read(v) ((v)->counter)
#define atomic_set(v,i) (((v)->counter) = (i))
@@ -36,36 +47,36 @@ static inline void atomic_add(int i, vol
{
unsigned long flags;
- local_irq_save(flags);
+ _atomic_irq_save(flags);
v->counter += i;
- local_irq_restore(flags);
+ _atomic_irq_restore(flags);
}
static inline void atomic_sub(int i, volatile atomic_t *v)
{
unsigned long flags;
- local_irq_save(flags);
+ _atomic_irq_save(flags);
v->counter -= i;
- local_irq_restore(flags);
+ _atomic_irq_restore(flags);
}
static inline void atomic_inc(volatile atomic_t *v)
{
unsigned long flags;
- local_irq_save(flags);
+ _atomic_irq_save(flags);
v->counter += 1;
- local_irq_restore(flags);
+ _atomic_irq_restore(flags);
}
static inline void atomic_dec(volatile atomic_t *v)
{
unsigned long flags;
- local_irq_save(flags);
+ _atomic_irq_save(flags);
v->counter -= 1;
- local_irq_restore(flags);
+ _atomic_irq_restore(flags);
}
static inline int atomic_dec_and_test(volatile atomic_t *v)
@@ -73,10 +84,10 @@ static inline int atomic_dec_and_test(vo
unsigned long flags;
int val;
- local_irq_save(flags);
+ _atomic_irq_save(flags);
val = v->counter;
v->counter = val -= 1;
- local_irq_restore(flags);
+ _atomic_irq_restore(flags);
return val == 0;
}
@@ -86,10 +97,10 @@ static inline int atomic_add_negative(in
unsigned long flags;
int val;
- local_irq_save(flags);
+ _atomic_irq_save(flags);
val = v->counter;
v->counter = val += i;
- local_irq_restore(flags);
+ _atomic_irq_restore(flags);
return val < 0;
}
@@ -98,9 +109,9 @@ static inline void atomic_clear_mask(uns
{
unsigned long flags;
- local_irq_save(flags);
+ _atomic_irq_save(flags);
*addr &= ~mask;
- local_irq_restore(flags);
+ _atomic_irq_restore(flags);
}
/* Atomic operations are already serializing on ARM */
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/include/mach/asm-arm/irq.h linux-2.4.19-rmk7-pxa2-rthal5.clean/include/asm-arm/mach/irq.h
--- linux-2.4.19-rmk7-pxa2.cvs/include/asm-arm/mach/irq.h Mon Nov 5 08:48:34 2001
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/include/asm-arm/mach/irq.h Wed Sep 24 12:05:09 2003
@@ -18,7 +18,8 @@ struct irqdesc {
unsigned int probe_ok : 1; /* IRQ can be used for probe */
unsigned int valid : 1; /* IRQ claimable */
unsigned int noautoenable : 1; /* don't automatically enable IRQ */
- unsigned int unused :25;
+ unsigned int masked : 1; /* IRQ is masked */
+ unsigned int unused :24;
unsigned int disable_depth;
struct list_head pend;
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/include/asm-arm/pgalloc.h linux-2.4.19-rmk7-pxa2-rthal5.clean/include/asm-arm/pgalloc.h
--- linux-2.4.19-rmk7-pxa2.cvs/include/asm-arm/pgalloc.h Mon Nov 5 09:21:44 2001
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/include/asm-arm/pgalloc.h Wed Sep 10 17:42:34 2003
@@ -138,4 +138,33 @@ static inline pgd_t *pgd_alloc(struct mm
extern int do_check_pgt_cache(int, int);
+#ifdef CONFIG_RTHAL
+extern inline void set_pgdir(unsigned long address, pgd_t entry)
+{
+ struct task_struct * p;
+ pgd_t *pgd;
+#ifdef CONFIG_SMP
+ int i;
+#endif
+
+ read_lock(&tasklist_lock);
+ for_each_task(p) {
+ if (!p->mm)
+ continue;
+ *pgd_offset(p->mm,address) = entry;
+ }
+ read_unlock(&tasklist_lock);
+#ifndef CONFIG_SMP
+ for (pgd = (pgd_t *)pgd_quicklist; pgd; pgd = (pgd_t *)__pgd_next(pgd))
+ pgd[pgd_index(address)] = entry;
+#else
+ /* To pgd_alloc/pgd_free, one holds master kernel lock and so does our callee, so we can
+ modify pgd caches of other CPUs as well. -jj */
+ for (i = 0; i < NR_CPUS; i++)
+ for (pgd = (pgd_t *)cpu_data[i].pgd_quick; pgd; pgd = (pgd_t *)__pgd_next(pgd))
+ pgd[pgd_index(address)] = entry;
+#endif
+}
+#endif /* CONFIG_RTHAL */
+
#endif
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/include/asm-arm/proc-armv/hard_system.h linux-2.4.19-rmk7-pxa2-rthal5.clean/include/asm-arm/proc-armv/hard_system.h
--- linux-2.4.19-rmk7-pxa2.cvs/include/asm-arm/proc-armv/hard_system.h Thu Jan 1 01:00:00 1970
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/include/asm-arm/proc-armv/hard_system.h Wed Sep 10 17:37:40 2003
@@ -0,0 +1,124 @@
+/*
+ * linux/include/asm-arm/proc-armv/hard_system.h
+ *
+ * Copyright (C) 1996 Russell King
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+/*
+ * RTAI
+ * The hard manipulation for enabling/disabling interrupts and related stuff.
+ */
+
+#ifndef __ASM_PROC_HARD_SYSTEM_H
+#define __ASM_PROC_HARD_SYSTEM_H
+
+#include <linux/config.h>
+
+/*
+ * Save the current interrupt enable state & disable IRQs
+ */
+#define hard_local_irq_save(x) \
+ ({ \
+ unsigned long temp; \
+ __asm__ __volatile__( \
+ "mrs %0, cpsr @ local_irq_save\n" \
+" orr %1, %0, #128\n" \
+" msr cpsr_c, %1" \
+ : "=r" (x), "=r" (temp) \
+ : \
+ : "memory"); \
+ })
+
+/*
+ * Enable IRQs
+ */
+#define hard_local_irq_enable() \
+ ({ \
+ unsigned long temp; \
+ __asm__ __volatile__( \
+ "mrs %0, cpsr @ local_irq_enable\n" \
+" bic %0, %0, #128\n" \
+" msr cpsr_c, %0" \
+ : "=r" (temp) \
+ : \
+ : "memory"); \
+ })
+
+/*
+ * Disable IRQs
+ */
+#define hard_local_irq_disable() \
+ ({ \
+ unsigned long temp; \
+ __asm__ __volatile__( \
+ "mrs %0, cpsr @ local_irq_disable\n" \
+" orr %0, %0, #128\n" \
+" msr cpsr_c, %0" \
+ : "=r" (temp) \
+ : \
+ : "memory"); \
+ })
+
+/*
+ * Enable FIQs
+ */
+#define hard_stf() \
+ ({ \
+ unsigned long temp; \
+ __asm__ __volatile__( \
+ "mrs %0, cpsr @ stf\n" \
+" bic %0, %0, #64\n" \
+" msr cpsr_c, %0" \
+ : "=r" (temp) \
+ : \
+ : "memory"); \
+ })
+
+/*
+ * Disable FIQs
+ */
+#define hard_clf() \
+ ({ \
+ unsigned long temp; \
+ __asm__ __volatile__( \
+ "mrs %0, cpsr @ clf\n" \
+" orr %0, %0, #64\n" \
+" msr cpsr_c, %0" \
+ : "=r" (temp) \
+ : \
+ : "memory"); \
+ })
+
+/*
+ * Save the current interrupt enable state.
+ */
+#define hard_local_save_flags(x) \
+ ({ \
+ __asm__ __volatile__( \
+ "mrs %0, cpsr @ local_save_flags\n" \
+ : "=r" (x) \
+ : \
+ : "memory"); \
+ })
+
+/*
+ * restore saved IRQ & FIQ state
+ */
+#define hard_local_irq_restore(x) \
+ __asm__ __volatile__( \
+ "msr cpsr_c, %0 @ local_irq_restore\n" \
+ : \
+ : "r" (x) \
+ : "memory")
+
+#define hard_cli() hard_local_irq_disable()
+#define hard_sti() hard_local_irq_enable()
+#define hard_save_flags_cli(x) hard_local_irq_save(x)
+#define hard_restore_flags(x) hard_local_irq_restore(x)
+#define hard_save_flags(x) hard_local_save_flags(x)
+
+#endif
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/include/asm-arm/proc-armv/system.h linux-2.4.19-rmk7-pxa2-rthal5.clean/include/asm-arm/proc-armv/system.h
--- linux-2.4.19-rmk7-pxa2.cvs/include/asm-arm/proc-armv/system.h Wed Aug 20 14:11:30 2003
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/include/asm-arm/proc-armv/system.h Wed Sep 10 17:41:40 2003
@@ -42,6 +42,37 @@ extern unsigned long cr_alignment; /* de
#define vectors_base() (0)
#endif
+#ifdef CONFIG_RTHAL
+#include <asm/proc/ptrace.h>
+
+/*
+ * RTAI
+ * Definition of rthal.
+ * Do not change this structure unless you know what you are doing!
+ * Filled with values in arch/arm/kernel/irq.c
+ */
+
+struct rt_hal {
+ void (*do_IRQ)(int, struct pt_regs*); /* must be first - arch/arm/kernel/entry-armv.S */
+ long long (*do_SRQ)(int, unsigned long); /* must be second - arch/arm/kernel/entry-common.S */
+ int (*do_TRAP)(int, struct pt_regs*); /* must be third - arch/arm/kernel/entry-armv.S */
+ void (*disint)(void);
+ void (*enint)(void);
+ unsigned int (*getflags)(void);
+ void (*setflags)(unsigned int);
+ unsigned int (*getflags_and_cli)(void);
+ void (*fdisint)(void);
+ void (*fenint)(void);
+ volatile u32 timer_match; /* Soft next Linux timer-interrupt */
+ void (*copy_back)(unsigned long, int);
+ void (*c_do_IRQ)(int, struct pt_regs*);
+} __attribute__ ((__aligned__ (32)));
+
+volatile extern struct rt_hal rthal;
+
+#endif
+
+#ifndef CONFIG_RTHAL
/*
* Save the current interrupt enable state & disable IRQs
*/
@@ -139,6 +170,18 @@ extern unsigned long cr_alignment; /* de
: "r" (x) \
: "memory")
+#else
+#define local_irq_save(x) do { x = rthal.getflags_and_cli(); } while (0)
+#define local_irq_enable() do { rthal.enint(); } while (0)
+#define local_irq_disable() do { rthal.disint(); } while (0)
+#define __stf() do { rthal.fenint(); } while (0)
+#define __clf() do { rthal.fdisint(); } while (0)
+#define local_save_flags(x) do { x = rthal.getflags(); } while (0)
+#define local_irq_restore(x) do { rthal.setflags(x); } while (0)
+
+#include <asm/proc/hard_system.h>
+#endif
+
#if defined(CONFIG_CPU_SA1100) || defined(CONFIG_CPU_SA110)
/*
* On the StrongARM, "swp" is terminally broken since it bypasses the
@@ -165,6 +208,7 @@ static inline unsigned long __xchg(unsig
switch (size) {
#ifdef swp_is_buggy
+#ifndef CONFIG_RTHAL /* original stuff */
case 1:
local_irq_save(flags);
ret = *(volatile unsigned char *)ptr;
@@ -178,6 +222,21 @@ static inline unsigned long __xchg(unsig
*(volatile unsigned long *)ptr = x;
local_irq_restore(flags);
break;
+#else /* CONFIG_RTHAL keep it atomic */
+ case 1:
+ hard_local_irq_save(flags);
+ ret = *(volatile unsigned char *)ptr;
+ *(volatile unsigned char *)ptr = x;
+ hard_local_irq_restore(flags);
+ break;
+
+ case 4:
+ hard_local_irq_save(flags);
+ ret = *(volatile unsigned long *)ptr;
+ *(volatile unsigned long *)ptr = x;
+ hard_local_irq_restore(flags);
+ break;
+#endif /* CONFIG_RTHAL */
#else
case 1: __asm__ __volatile__ ("swpb %0, %1, [%2]"
: "=&r" (ret)
diff -urNp --exclude=CVS linux-2.4.19-rmk7-pxa2.cvs/kernel/ksyms.c linux-2.4.19-rmk7-pxa2-rthal5.clean/kernel/ksyms.c
--- linux-2.4.19-rmk7-pxa2.cvs/kernel/ksyms.c Wed Aug 20 14:11:30 2003
+++ linux-2.4.19-rmk7-pxa2-rthal5.clean/kernel/ksyms.c Wed Sep 10 17:37:40 2003
@@ -452,6 +452,9 @@ EXPORT_SYMBOL(schedule_timeout);
EXPORT_SYMBOL(sys_sched_yield);
EXPORT_SYMBOL(jiffies);
EXPORT_SYMBOL(xtime);
+#ifdef CONFIG_RTHAL
+EXPORT_SYMBOL(tick);
+#endif
EXPORT_SYMBOL(do_gettimeofday);
EXPORT_SYMBOL(do_settimeofday);
|