index
:
riscv-gnu-toolchain/qemu/roms/seabios-hppa.git
alpha-port
bigfont
devel
devel-2022
devel-4-do-not-use
devel-btlb
devel-btlb-2
devel-last-for-v16
devel-with-sti64bit
devel2
devel3
devel4
devel5
devel64
hp3000
hp3000-console
hppa-reboot-fix
hppa-target
hppa-target-2
master
master-new-v7
master-old
master-prerelease
parisc-qemu-4.1.0
parisc-qemu-5.0
parisc-qemu-5.1
parisc-qemu-5.1-next
parisc-qemu-6
parisc_firmware
seabios-hppa-v3-rc
seabios-hppa-v3-rc2
serial-port-fix-test
toc-support
upstream
v6-test
Unnamed repository; edit this file 'description' to name the repository.
root
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
Age
Commit message (
Expand
)
Author
Files
Lines
2009-02-07
Introduce MBR struct; simplify cdrom emulation code.
Kevin O'Connor
3
-28
/
+63
2009-02-07
Suppress initialized variable compile warning in ata.c.
Kevin O'Connor
1
-1
/
+1
2009-02-06
Cleanup ATA code; get SATA drives working on real hardware.
Kevin O'Connor
2
-143
/
+135
2009-02-05
Don't mask irqs in default hardware irq handler.
Kevin O'Connor
2
-11
/
+4
2009-02-05
Add pci_to_bdf() helper function.
Kevin O'Connor
1
-0
/
+3
2009-02-05
Make sure to clear global variables before use.
Kevin O'Connor
3
-0
/
+10
2009-01-29
Don't declare a handler for int 0x1c - the default handler is sufficient.
Kevin O'Connor
4
-10
/
+0
2009-01-21
Minor - use a struct when working with pcibios 1ab10e param.
Kevin O'Connor
1
-8
/
+13
2009-01-21
Minor enhancement - kbd reset should set 0x1234 in BDA reset flag.
Kevin O'Connor
1
-1
/
+3
2009-01-21
Fix apparent bug in int1348 -- checksum didn't have regs->si offset.
Kevin O'Connor
1
-1
/
+2
2009-01-19
Minor - call16 should not assume %cs==SEG_BIOS.
Kevin O'Connor
2
-4
/
+6
2009-01-19
Implement memcpy_far and checksum_far, and replace _fl variants.
Kevin O'Connor
7
-35
/
+48
2009-01-19
Allow GET/SET_SEG asm to access memory or a register.
Kevin O'Connor
1
-2
/
+2
2009-01-19
Rename MAKE_FARPTR (and similar) to MAKE_FLATPTR.
Kevin O'Connor
16
-111
/
+111
2009-01-19
Minor - streamline SET_GLOBAL macro - reduce #if usage.
Kevin O'Connor
1
-9
/
+5
2009-01-19
Minor - always set %esp immediately after setting %ss.
Kevin O'Connor
2
-16
/
+15
2009-01-19
Fix apparent bug in 16bit resume code.
Kevin O'Connor
1
-13
/
+11
2009-01-19
Fix apparent bug in pci bios handle_1ab10e function.
Kevin O'Connor
1
-1
/
+1
2009-01-18
Cleanup ps2 port reset handling.
Kevin O'Connor
1
-30
/
+36
2009-01-17
Cleanup keyboard reset handling.
Kevin O'Connor
4
-14
/
+28
2009-01-17
Add extra test for CONFIG_ATA in src/disk.c.
Kevin O'Connor
1
-0
/
+3
2009-01-17
Add CONFIG_S3_RESUME to control support for S3 resume.
Kevin O'Connor
2
-14
/
+20
2009-01-17
Don't assume __call16_from32 and __call16 are linear in romlayout.S.
Kevin O'Connor
1
-3
/
+5
2009-01-17
Fix minor bug in ps2port.c - can't check for -1 with unsigned return type.
Kevin O'Connor
1
-1
/
+1
2009-01-17
Reserve space for buffers in f-segment; don't allocate from freespace.
Kevin O'Connor
5
-23
/
+17
2009-01-17
Minor - don't force align the 32 bss.
Kevin O'Connor
3
-6
/
+2
2009-01-17
Put each assembler function into its own section.
Kevin O'Connor
2
-73
/
+97
2009-01-17
Move variables from assembler to C code.
Kevin O'Connor
15
-253
/
+248
2009-01-17
Remove some unused IRQ_TRAMPOLINE definitions.
Kevin O'Connor
1
-3
/
+0
2009-01-17
Try to automatically fit sections into open spaces in the fixed area.
Kevin O'Connor
4
-11
/
+11
2009-01-17
Layout fixed area using linker instead of assembler.
Kevin O'Connor
5
-26
/
+10
2009-01-17
Misc fixes.
Kevin O'Connor
3
-4
/
+5
2009-01-15
Change license from GPLv3 to LGPLv3.
Kevin O'Connor
49
-50
/
+50
2009-01-04
Initial KVM support.
Kevin O'Connor
6
-25
/
+163
2009-01-04
Make sure ps2 port command reads are from the desired device.
Kevin O'Connor
3
-24
/
+49
2009-01-02
Don't define bda as a macro in resume.c - it confuses AVOIDCOMBINE mode.
Kevin O'Connor
1
-1
/
+1
2009-01-02
The BDA is at segment 0x0040 not 0x0000.
Kevin O'Connor
5
-31
/
+37
2009-01-02
Improve set_code_fail/floppy_ret/disk_ret code generation.
Kevin O'Connor
6
-29
/
+41
2009-01-02
Fix bug in basic_access error path.
Kevin O'Connor
1
-0
/
+1
2009-01-01
Reduce stack usage of hw irq handlers.
Kevin O'Connor
6
-34
/
+43
2009-01-01
Switch to new stack when calling ATA function in 16bit mode.
Kevin O'Connor
7
-25
/
+73
2008-12-31
Use new 'struct disk_op_s' to issue ata requests.
Kevin O'Connor
7
-133
/
+125
2008-12-31
Return CDEMU parameters to ebda segment (instead of using globals).
Kevin O'Connor
6
-84
/
+85
2008-12-29
Introduce GET/SET_EBDA2() macros - they take a cached ebda seg.
Kevin O'Connor
7
-52
/
+69
2008-12-29
Add more linker protections around variables accessed from 16bit mode.
Kevin O'Connor
15
-33
/
+37
2008-12-28
Move IPL definitions from ebda to global variables.
Kevin O'Connor
7
-59
/
+73
2008-12-28
Move most of ATA and CDEMU from ebda to global variables.
Kevin O'Connor
6
-264
/
+283
2008-12-28
Move ram size definitions from ebda to global variables.
Kevin O'Connor
8
-21
/
+23
2008-12-28
Move pir table offset from ebda to a global variable.
Kevin O'Connor
5
-14
/
+20
2008-12-28
Add linker magic to ensure 16bit variables aren't repeated in 32bit code.
Kevin O'Connor
8
-27
/
+23
[next]