3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-01-31 23:32:17 +00:00
Brooklyn/arch/alpha/lib/clear_page.S
Scare Crowe 84ba5b15ac Updates and fixes for BrooklynR
* Enhance GPIO addon for Noctua Fans for the Qortector upcoming case. This will put PWM signal to real-time.

* Fixed RDP not letting a user login if not logged out on Cinnamon release (reported by Crowetic)

* Update i2c sensor db

* Fixed DRM broadcast over HDMI 2+

* Ease up DHCP security only to prevent Brooklyn blocking routers.

* Add possibility to add extra memory for Cinnamon Desktop Release

* Fix error message of Software Render mode on Cinnamon Desktop

* Add proper offset for HD screens for pixel array

*Fixed HDMI jitter for videocore4 GPU

* Enable all radios (including Bluetooth)
2021-06-12 13:10:41 +05:00

42 lines
490 B
ArmAsm

/* SPDX-License-Identifier: GPL-2.0 */
/*
* arch/alpha/lib/clear_page.S
*
* Zero an entire page.
*/
#include <asm/export.h>
.text
.align 4
.global clear_page
.ent clear_page
clear_page:
.prologue 0
lda $0,128
nop
unop
nop
1: stq $31,0($16)
stq $31,8($16)
stq $31,16($16)
stq $31,24($16)
stq $31,32($16)
stq $31,40($16)
stq $31,48($16)
subq $0,1,$0
stq $31,56($16)
addq $16,64,$16
unop
bne $0,1b
ret
nop
unop
nop
.end clear_page
EXPORT_SYMBOL(clear_page)