source: mainline/kernel/generic/src/lib/func.c@ 28ecadb

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 28ecadb was 28ecadb, checked in by Jakub Jermar <jakub@…>, 19 years ago

Convert sparc64 to detect keyboard and determine
its physical address by walking the memory representation
of the OpenFirmware device tree.

Add bus-specific functions that know how to apply the
"ranges" property to one component of the "reg" property.
Buses supported so far include FHC, EBUS and PCI.

  • Property mode set to 100644
File size: 5.2 KB
RevLine 
[f761f1eb]1/*
2 * Copyright (C) 2001-2004 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
[cc73a8a1]29/** @addtogroup generic
[b45c443]30 * @{
31 */
32
[cf26ba9]33/**
[b45c443]34 * @file
[cf26ba9]35 * @brief Miscellaneous functions.
36 */
37
[f761f1eb]38#include <func.h>
39#include <print.h>
40#include <cpu.h>
41#include <arch/asm.h>
42#include <arch.h>
[ff3b3197]43#include <typedefs.h>
[93b84b3]44#include <console/kconsole.h>
[f761f1eb]45
[36e7ee98]46atomic_t haltstate = {0}; /**< Halt flag */
[f761f1eb]47
[d34657e]48
49/** Halt wrapper
50 *
51 * Set halt flag and halt the cpu.
52 *
53 */
[36e7ee98]54void halt()
[f761f1eb]55{
[36e7ee98]56#ifdef CONFIG_DEBUG
[2cf5634]57 bool rundebugger = false;
[36e7ee98]58
59// TODO test_and_set not defined on all arches
60// if (!test_and_set(&haltstate))
61 if (!atomic_get(&haltstate)) {
62 atomic_set(&haltstate, 1);
63 rundebugger = true;
64 }
65#else
[53f9821]66 atomic_set(&haltstate, 1);
[36e7ee98]67#endif
68
[22f7769]69 interrupts_disable();
[93b84b3]70#ifdef CONFIG_DEBUG
[36e7ee98]71 if (rundebugger) {
72 printf("\n");
73 kconsole("panic"); /* Run kconsole as a last resort to user */
74 }
[93b84b3]75#endif
[623ba26c]76 if (CPU)
77 printf("cpu%d: halted\n", CPU->id);
78 else
79 printf("cpu: halted\n");
[f761f1eb]80 cpu_halt();
81}
82
[ff3b3197]83/** Return number of characters in a string.
84 *
85 * @param str NULL terminated string.
86 *
87 * @return Number of characters in str.
88 */
89size_t strlen(const char *str)
90{
91 int i;
92
93 for (i = 0; str[i]; i++)
94 ;
95
96 return i;
97}
[f761f1eb]98
[28ecadb]99/** Compare two NULL terminated strings
100 *
101 * Do a char-by-char comparison of two NULL terminated strings.
102 * The strings are considered equal iff they consist of the same
103 * characters on the minimum of their lengths.
104 *
105 * @param src First string to compare.
106 * @param dst Second string to compare.
107 *
108 * @return 0 if the strings are equal, -1 if first is smaller, 1 if second smaller.
109 *
110 */
111int strcmp(const char *src, const char *dst)
112{
113 for (; *src && *dst; src++, dst++) {
114 if (*src < *dst)
115 return -1;
116 if (*src > *dst)
117 return 1;
118 }
119 if (*src == *dst)
120 return 0;
121 if (!*src)
122 return -1;
123 return 1;
124}
125
126
[d34657e]127/** Compare two NULL terminated strings
128 *
[ff3b3197]129 * Do a char-by-char comparison of two NULL terminated strings.
130 * The strings are considered equal iff they consist of the same
131 * characters on the minimum of their lengths and specified maximal
132 * length.
[d34657e]133 *
134 * @param src First string to compare.
135 * @param dst Second string to compare.
[ff3b3197]136 * @param len Maximal length for comparison.
[d34657e]137 *
[0c8e692]138 * @return 0 if the strings are equal, -1 if first is smaller, 1 if second smaller.
[d34657e]139 *
[f761f1eb]140 */
[f4338d2]141int strncmp(const char *src, const char *dst, size_t len)
[f761f1eb]142{
143 int i;
144
[28ecadb]145 for (i = 0; *src && *dst && i < len; src++, dst++, i++) {
[0c8e692]146 if (*src < *dst)
147 return -1;
148 if (*src > *dst)
149 return 1;
[f761f1eb]150 }
[0c8e692]151 if (i == len || *src == *dst)
152 return 0;
[07bd114e]153 if (!*src)
[0c8e692]154 return -1;
[f761f1eb]155 return 1;
156}
[8491c48]157
[28ecadb]158
159
[f4338d2]160/** Copy NULL terminated string.
161 *
162 * Copy at most 'len' characters from string 'src' to 'dest'.
163 * If 'src' is shorter than 'len', '\0' is inserted behind the
164 * last copied character.
165 *
166 * @param src Source string.
[abbc16e]167 * @param dest Destination buffer.
[f4338d2]168 * @param len Size of destination buffer.
169 */
170void strncpy(char *dest, const char *src, size_t len)
171{
172 int i;
173 for (i = 0; i < len; i++) {
174 if (!(dest[i] = src[i]))
175 return;
176 }
[91c78c9]177 dest[i-1] = '\0';
[f4338d2]178}
[6e716a59]179
[7f1c620]180/** Convert ascii representation to unative_t
[6e716a59]181 *
182 * Supports 0x for hexa & 0 for octal notation.
183 * Does not check for overflows, does not support negative numbers
184 *
185 * @param text Textual representation of number
186 * @return Converted number or 0 if no valid number ofund
187 */
[7f1c620]188unative_t atoi(const char *text)
[6e716a59]189{
190 int base = 10;
[7f1c620]191 unative_t result = 0;
[6e716a59]192
193 if (text[0] == '0' && text[1] == 'x') {
194 base = 16;
195 text += 2;
196 } else if (text[0] == '0')
197 base = 8;
198
199 while (*text) {
[ba276f7]200 if (base != 16 && \
201 ((*text >= 'A' && *text <= 'F' )
202 || (*text >='a' && *text <='f')))
[6e716a59]203 break;
204 if (base == 8 && *text >='8')
205 break;
206
[2312685]207 if (*text >= '0' && *text <= '9') {
208 result *= base;
[6e716a59]209 result += *text - '0';
[2312685]210 } else if (*text >= 'A' && *text <= 'F') {
211 result *= base;
[6e716a59]212 result += *text - 'A' + 10;
[ba276f7]213 } else if (*text >= 'a' && *text <= 'f') {
214 result *= base;
215 result += *text - 'a' + 10;
[2312685]216 } else
[6e716a59]217 break;
218 text++;
219 }
220
221 return result;
222}
[b45c443]223
[cc73a8a1]224/** @}
[b45c443]225 */
Note: See TracBrowser for help on using the repository browser.