Changeset 64e9cf4 in mainline for kernel/arch
- Timestamp:
- 2023-02-02T22:23:23Z (3 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8addb24a
- Parents:
- f114d40 (diff), b076dfb (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- kernel/arch
- Files:
-
- 6 edited
-
amd64/include/arch/asm.h (modified) (1 diff)
-
arm32/include/arch/asm.h (modified) (1 diff)
-
arm64/include/arch/asm.h (modified) (1 diff)
-
ia32/include/arch/asm.h (modified) (1 diff)
-
mips32/src/mips32.c (modified) (1 diff)
-
ppc32/src/mm/frame.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/include/arch/asm.h
rf114d40 r64e9cf4 58 58 } 59 59 } 60 61 #define ARCH_SPIN_HINT() asm volatile ("pause\n") 60 62 61 63 /** Byte from port -
kernel/arch/arm32/include/arch/asm.h
rf114d40 r64e9cf4 65 65 } 66 66 67 #ifdef PROCESSOR_ARCH_armv7_a 68 #define ARCH_SPIN_HINT() asm volatile ("yield") 69 #endif 70 67 71 _NO_TRACE static inline void pio_write_8(ioport8_t *port, uint8_t v) 68 72 { -
kernel/arch/arm64/include/arch/asm.h
rf114d40 r64e9cf4 60 60 ; 61 61 } 62 63 #define ARCH_SPIN_HINT() asm volatile ("yield") 62 64 63 65 /** Output byte to port. -
kernel/arch/ia32/include/arch/asm.h
rf114d40 r64e9cf4 63 63 ); 64 64 } 65 66 #define ARCH_SPIN_HINT() asm volatile ("pause\n") 65 67 66 68 #define GEN_READ_REG(reg) _NO_TRACE static inline sysarg_t read_ ##reg (void) \ -
kernel/arch/mips32/src/mips32.c
rf114d40 r64e9cf4 41 41 #include <str.h> 42 42 #include <mem.h> 43 #include <preemption.h> 43 44 #include <userspace.h> 44 45 #include <stdbool.h> -
kernel/arch/ppc32/src/mm/frame.c
rf114d40 r64e9cf4 33 33 */ 34 34 35 #include <arch/asm.h> 35 36 #include <arch/boot/boot.h> 36 37 #include <arch/mm/frame.h>
Note:
See TracChangeset
for help on using the changeset viewer.
