os-k/kaleid/kernel/io/spkr.c

102 lines
3.8 KiB
C
Raw Normal View History

2019-05-06 21:08:16 +02:00
//----------------------------------------------------------------------------//
// GNU GPL OS/K //
// //
// Desc: Speaker functions //
// //
// //
2019-05-07 17:02:25 +02:00
// Copyright © 4018-4019 The OS/K Team //
2019-05-06 21:08:16 +02:00
// //
// This file is part of OS/K. //
// //
// OS/K is free software: you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation, either version 3 of the License, or //
// any later version. //
// //
// OS/K is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY//without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with OS/K. If not, see <https://www.gnu.org/licenses/>. //
//----------------------------------------------------------------------------//
2019-05-13 23:22:27 +02:00
#include <io/spkr.h>
#include <ke/time.h>
2020-02-19 22:19:58 +01:00
#include <libbuf.h>
2019-05-06 21:08:16 +02:00
2019-05-19 01:33:16 +02:00
extern bool KeIdtIsInitialized;
2020-01-08 21:10:24 +01:00
struct Note score[40] = { {440, 200}, {110, 200}, {440, 200}, {110, 200},
{440, 200}, {110, 200}, {349, 140}, {87, 100},
{523, 60}, {87, 100}, {440, 200}, {110, 200},
{349, 140}, {87, 100}, {523, 60}, {87, 100},
{440, 200}, {110, 200}, {440, 200}, {110, 200},
{659, 200}, {110, 200}, {659, 200}, {110, 200},
{659, 200}, {87, 200}, {698, 140}, {87, 100},
{523, 60}, {87, 100}, {415, 200}, {87, 200},
{349, 140}, {87, 100}, {523, 60}, {87, 100},
2020-01-08 21:10:24 +01:00
{440, 200}, {110, 200}, {110, 200}, {110, 200} };
2020-01-08 21:10:24 +01:00
void IoStartSpeaker(ulong freq)
2019-05-06 21:08:16 +02:00
{
2019-05-18 19:09:46 +02:00
uchar temp;
2020-01-08 21:10:24 +01:00
ulong pitf = 1193180 / freq;
2019-05-06 21:08:16 +02:00
2019-05-07 15:48:09 +02:00
ulong flags = KePauseIRQs();
2019-05-06 21:08:16 +02:00
IoWriteByteOnPort(0x43, 0xB6);
2019-05-18 19:09:46 +02:00
IoWriteByteOnPort(0x42, (uchar)pitf);
IoWriteByteOnPort(0x42, (uchar)(pitf >> 8));
2019-05-06 21:08:16 +02:00
temp = IoReadByteFromPort(0x61);
if (temp != (temp | 3)) {
IoWriteByteOnPort(0x61, temp | 3);
}
2019-05-07 15:48:09 +02:00
KeRestoreIRQs(flags);
2019-05-06 21:08:16 +02:00
}
2019-11-26 17:23:55 +01:00
static inline void IoQuietSpeaker(void)
2019-05-06 21:08:16 +02:00
{
2019-05-18 19:09:46 +02:00
ulong flags = KePauseIRQs();
2019-05-06 21:08:16 +02:00
IoWriteByteOnPort(0x61, IoReadByteFromPort(0x61) & 0xFC);
2019-05-18 19:09:46 +02:00
KeRestoreIRQs(flags);
2019-05-06 21:08:16 +02:00
}
2020-01-08 21:10:24 +01:00
void IoDoTone(ulong tone, ulong time)
2019-05-07 17:02:25 +02:00
{
IoStartSpeaker(tone);
2019-11-26 17:23:55 +01:00
KeSleep(time);
2019-05-07 17:02:25 +02:00
}
2020-01-08 21:10:24 +01:00
static void IoDoToneNoIdt(ulong tone, ulong time)
2019-05-22 18:15:23 +02:00
{
extern void temporize(void);
IoStartSpeaker(tone);
for (int i = 0; i < 100; i++) temporize();
IoQuietSpeaker();
}
2019-05-18 19:09:46 +02:00
void IoDoBeep(void)
{
2019-11-28 13:11:16 +01:00
if (KeIdtIsInitialized) {
2019-05-19 01:33:16 +02:00
IoDoTone(1000, 100);
2019-11-28 13:05:27 +01:00
IoQuietSpeaker();
2019-11-28 13:11:16 +01:00
}
2019-05-22 18:15:23 +02:00
}
void IoDoBeepNoIdt(void)
{
IoDoToneNoIdt(1000, 100);
2019-05-18 19:09:46 +02:00
}
2019-05-07 17:02:25 +02:00
void IoDoStarWars(void)
{
2019-12-30 01:22:36 +01:00
for (uint i = 0; i < 40; i++) {
2020-01-08 21:10:24 +01:00
IoDoTone(score[i].tone, score[i].time);
2019-05-07 17:02:25 +02:00
}
2019-11-26 17:23:55 +01:00
IoQuietSpeaker();
//bprintf(BStdOut, "FINISHED\n");
2019-05-07 17:02:25 +02:00
}