2019-06-04 16:11:33 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2008-08-05 23:14:15 +08:00
|
|
|
* arch/arm/mach-rpc/include/mach/uncompress.h
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* Copyright (C) 1996 Russell King
|
|
|
|
*/
|
|
|
|
#define VIDMEM ((char *)SCREEN_START)
|
|
|
|
|
2008-09-06 19:10:45 +08:00
|
|
|
#include <linux/io.h>
|
2008-08-05 23:14:15 +08:00
|
|
|
#include <mach/hardware.h>
|
2007-09-03 02:59:34 +08:00
|
|
|
#include <asm/setup.h>
|
|
|
|
#include <asm/page.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-09-03 02:59:34 +08:00
|
|
|
int video_size_row;
|
|
|
|
unsigned char bytes_per_char_h;
|
2005-04-17 06:20:36 +08:00
|
|
|
extern unsigned long con_charconvtable[256];
|
|
|
|
|
|
|
|
struct param_struct {
|
|
|
|
unsigned long page_size;
|
|
|
|
unsigned long nr_pages;
|
|
|
|
unsigned long ramdisk_size;
|
|
|
|
unsigned long mountrootrdonly;
|
|
|
|
unsigned long rootdev;
|
|
|
|
unsigned long video_num_cols;
|
|
|
|
unsigned long video_num_rows;
|
|
|
|
unsigned long video_x;
|
|
|
|
unsigned long video_y;
|
|
|
|
unsigned long memc_control_reg;
|
|
|
|
unsigned char sounddefault;
|
|
|
|
unsigned char adfsdrives;
|
|
|
|
unsigned char bytes_per_char_h;
|
|
|
|
unsigned char bytes_per_char_v;
|
|
|
|
unsigned long unused[256/4-11];
|
|
|
|
};
|
|
|
|
|
|
|
|
static const unsigned long palette_4[16] = {
|
|
|
|
0x00000000,
|
|
|
|
0x000000cc,
|
|
|
|
0x0000cc00, /* Green */
|
|
|
|
0x0000cccc, /* Yellow */
|
|
|
|
0x00cc0000, /* Blue */
|
|
|
|
0x00cc00cc, /* Magenta */
|
|
|
|
0x00cccc00, /* Cyan */
|
|
|
|
0x00cccccc, /* White */
|
|
|
|
0x00000000,
|
|
|
|
0x000000ff,
|
|
|
|
0x0000ff00,
|
|
|
|
0x0000ffff,
|
|
|
|
0x00ff0000,
|
|
|
|
0x00ff00ff,
|
|
|
|
0x00ffff00,
|
|
|
|
0x00ffffff
|
|
|
|
};
|
|
|
|
|
|
|
|
#define palette_setpixel(p) *(unsigned long *)(IO_START+0x00400000) = 0x10000000|((p) & 255)
|
|
|
|
#define palette_write(v) *(unsigned long *)(IO_START+0x00400000) = 0x00000000|((v) & 0x00ffffff)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* params_phys is a linker defined symbol - see
|
|
|
|
* arch/arm/boot/compressed/Makefile
|
|
|
|
*/
|
|
|
|
extern __attribute__((pure)) struct param_struct *params(void);
|
|
|
|
#define params (params())
|
|
|
|
|
|
|
|
#ifndef STANDALONE_DEBUG
|
2011-04-29 05:00:17 +08:00
|
|
|
unsigned long video_num_cols;
|
|
|
|
unsigned long video_num_rows;
|
|
|
|
unsigned long video_x;
|
|
|
|
unsigned long video_y;
|
|
|
|
unsigned char bytes_per_char_v;
|
|
|
|
int white;
|
2007-09-03 02:59:34 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* This does not append a newline
|
|
|
|
*/
|
2016-02-19 00:36:23 +08:00
|
|
|
static inline void putc(int c)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
extern void ll_write_char(char *, char c, char white);
|
|
|
|
int x,y;
|
|
|
|
char *ptr;
|
|
|
|
|
2007-09-03 02:59:34 +08:00
|
|
|
x = video_x;
|
|
|
|
y = video_y;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-03-28 17:24:33 +08:00
|
|
|
if (c == '\n') {
|
2007-09-03 02:59:34 +08:00
|
|
|
if (++y >= video_num_rows)
|
2006-03-28 17:24:33 +08:00
|
|
|
y--;
|
|
|
|
} else if (c == '\r') {
|
|
|
|
x = 0;
|
|
|
|
} else {
|
2007-09-03 02:59:34 +08:00
|
|
|
ptr = VIDMEM + ((y*video_num_cols*bytes_per_char_v+x)*bytes_per_char_h);
|
2006-03-28 17:24:33 +08:00
|
|
|
ll_write_char(ptr, c, white);
|
2007-09-03 02:59:34 +08:00
|
|
|
if (++x >= video_num_cols) {
|
2005-04-17 06:20:36 +08:00
|
|
|
x = 0;
|
2007-09-03 02:59:34 +08:00
|
|
|
if ( ++y >= video_num_rows ) {
|
2005-04-17 06:20:36 +08:00
|
|
|
y--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-03 02:59:34 +08:00
|
|
|
video_x = x;
|
|
|
|
video_y = y;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2006-03-28 17:24:33 +08:00
|
|
|
static inline void flush(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Setup for decompression
|
|
|
|
*/
|
|
|
|
static void arch_decomp_setup(void)
|
|
|
|
{
|
|
|
|
int i;
|
2007-09-03 02:59:34 +08:00
|
|
|
struct tag *t = (struct tag *)params;
|
|
|
|
unsigned int nr_pages = 0, page_size = PAGE_SIZE;
|
|
|
|
|
2019-04-28 06:06:03 +08:00
|
|
|
if (t->hdr.tag == ATAG_CORE) {
|
|
|
|
for (; t->hdr.size; t = tag_next(t)) {
|
|
|
|
if (t->hdr.tag == ATAG_VIDEOTEXT) {
|
2007-09-03 02:59:34 +08:00
|
|
|
video_num_rows = t->u.videotext.video_lines;
|
|
|
|
video_num_cols = t->u.videotext.video_cols;
|
|
|
|
video_x = t->u.videotext.x;
|
|
|
|
video_y = t->u.videotext.y;
|
2019-04-28 06:06:03 +08:00
|
|
|
} else if (t->hdr.tag == ATAG_VIDEOLFB) {
|
|
|
|
bytes_per_char_h = t->u.videolfb.lfb_depth;
|
|
|
|
bytes_per_char_v = 8;
|
|
|
|
} else if (t->hdr.tag == ATAG_MEM) {
|
2007-09-03 02:59:34 +08:00
|
|
|
page_size = PAGE_SIZE;
|
|
|
|
nr_pages += (t->u.mem.size / PAGE_SIZE);
|
|
|
|
}
|
|
|
|
}
|
2019-04-28 06:06:03 +08:00
|
|
|
} else {
|
2007-09-03 02:59:34 +08:00
|
|
|
nr_pages = params->nr_pages;
|
|
|
|
page_size = params->page_size;
|
|
|
|
video_num_rows = params->video_num_rows;
|
|
|
|
video_num_cols = params->video_num_cols;
|
|
|
|
video_x = params->video_x;
|
|
|
|
video_y = params->video_y;
|
|
|
|
bytes_per_char_h = params->bytes_per_char_h;
|
|
|
|
bytes_per_char_v = params->bytes_per_char_v;
|
|
|
|
}
|
|
|
|
|
|
|
|
video_size_row = video_num_cols * bytes_per_char_h;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
if (bytes_per_char_h == 4)
|
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
con_charconvtable[i] =
|
|
|
|
(i & 128 ? 1 << 0 : 0) |
|
|
|
|
(i & 64 ? 1 << 4 : 0) |
|
|
|
|
(i & 32 ? 1 << 8 : 0) |
|
|
|
|
(i & 16 ? 1 << 12 : 0) |
|
|
|
|
(i & 8 ? 1 << 16 : 0) |
|
|
|
|
(i & 4 ? 1 << 20 : 0) |
|
|
|
|
(i & 2 ? 1 << 24 : 0) |
|
|
|
|
(i & 1 ? 1 << 28 : 0);
|
|
|
|
else
|
|
|
|
for (i = 0; i < 16; i++)
|
|
|
|
con_charconvtable[i] =
|
|
|
|
(i & 8 ? 1 << 0 : 0) |
|
|
|
|
(i & 4 ? 1 << 8 : 0) |
|
|
|
|
(i & 2 ? 1 << 16 : 0) |
|
|
|
|
(i & 1 ? 1 << 24 : 0);
|
|
|
|
|
|
|
|
|
|
|
|
palette_setpixel(0);
|
|
|
|
if (bytes_per_char_h == 1) {
|
|
|
|
palette_write (0);
|
|
|
|
palette_write (0x00ffffff);
|
|
|
|
for (i = 2; i < 256; i++)
|
|
|
|
palette_write (0);
|
|
|
|
white = 1;
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
palette_write (i < 16 ? palette_4[i] : 0);
|
|
|
|
white = 7;
|
|
|
|
}
|
|
|
|
|
2007-09-03 02:59:34 +08:00
|
|
|
if (nr_pages * page_size < 4096*1024) error("<4M of mem\n");
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
#endif
|