-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gpu_Hal.cpp
1106 lines (909 loc) · 23.4 KB
/
Gpu_Hal.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) Bridgetek Pte Ltd
* Copyright (c) Riverdi Sp. z o.o. sp. k. <[email protected]>
* Copyright (c) Skalski Embedded Technologies <[email protected]>
*
* THIS SOFTWARE IS PROVIDED BY BRIDGETEK PTE LTD "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL BRIDGETEK PTE LTD BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES
* LOSS OF USE, DATA, OR PROFITS OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* BRIDGETEK DRIVERS MAY BE USED ONLY IN CONJUNCTION WITH PRODUCTS BASED ON
* BRIDGETEK PARTS.
*
* BRIDGETEK DRIVERS MAY BE DISTRIBUTED IN ANY FORM AS LONG AS LICENSE
* INFORMATION IS NOT MODIFIED.
*
* IF A CUSTOM VENDOR ID AND/OR PRODUCT ID OR DESCRIPTION STRING ARE USED,
* IT IS THE RESPONSIBILITY OF THE PRODUCT MANUFACTURER TO MAINTAIN ANY CHANGES
* AND SUBSEQUENT WHQL RE-CERTIFICATION AS A RESULT OF MAKING THESE CHANGES.
*/
#include "Platform.h"
/*****************************************************************************/
/*
* Gpu_Hal_Init()
*/
bool_t
Gpu_Hal_Init (Gpu_HalInit_t *halinit)
{
return TRUE;
}
/*
* Gpu_Hal_Open()
*/
bool_t
Gpu_Hal_Open (Gpu_Hal_Context_t *host)
{
/* gpio */
pinMode(GPIO_CS, OUTPUT);
digitalWrite(GPIO_CS, HIGH);
pinMode(GPIO_PD, OUTPUT);
digitalWrite(GPIO_PD, HIGH);
/* spi */
#ifdef ESP32 /* Riverdi IoT Display */
SPI.begin(14, 2, 15, 4);
#else
SPI.begin();
#endif
SPI.setClockDivider(SPI_CLOCK_DIV2);
SPI.setBitOrder(MSBFIRST);
SPI.setDataMode(SPI_MODE0);
/* initialize the context valriables */
host->cmd_fifo_wp = host->dl_buff_wp = 0;
host->spinumdummy = GPU_SPI_ONEDUMMY;
host->status = GPU_HAL_OPENED;
return TRUE;
}
/*
* Gpu_Hal_Close()
*/
void
Gpu_Hal_Close (Gpu_Hal_Context_t *host)
{
SPI.end();
host->status = GPU_HAL_CLOSED;
}
/*
* Gpu_Hal_DeInit()
*/
void
Gpu_Hal_DeInit()
{
return;
}
/*****************************************************************************/
/*
* Gpu_Hal_StartTransfer
*/
void
Gpu_Hal_StartTransfer (Gpu_Hal_Context_t *host,
GPU_TRANSFERDIR_T rw,
uint32_t addr)
{
if (GPU_READ == rw)
{
digitalWrite (GPIO_CS, LOW);
SPI.transfer (addr >> 16);
SPI.transfer (highByte(addr));
SPI.transfer (lowByte(addr));
SPI.transfer (0);
host->status = GPU_HAL_READING;
}
else
{
digitalWrite (GPIO_CS, LOW);
SPI.transfer (0x80 | (addr >> 16));
SPI.transfer (highByte(addr));
SPI.transfer (lowByte(addr));
host->status = GPU_HAL_WRITING;
}
}
/*
* Gpu_Hal_StartCmdTransfer()
*/
void
Gpu_Hal_StartCmdTransfer (Gpu_Hal_Context_t *host,
GPU_TRANSFERDIR_T rw,
uint16_t count)
{
Gpu_Hal_StartTransfer(host,rw,host->cmd_fifo_wp + RAM_CMD);
}
/*
* Gpu_Hal_TransferString()
*/
void
Gpu_Hal_TransferString (Gpu_Hal_Context_t *host,
const char8_t *string)
{
uint16_t length = strlen(string);
while(length --)
{
Gpu_Hal_Transfer8(host,*string);
string ++;
}
/* append one null as ending flag */
Gpu_Hal_Transfer8(host,0);
}
/*
* Gpu_Hal_Transfer8()
*/
uint8_t
Gpu_Hal_Transfer8 (Gpu_Hal_Context_t *host,
uint8_t value)
{
return SPI.transfer (value);
}
/*
* Gpu_Hal_Transfer16()
*/
uint16_t
Gpu_Hal_Transfer16 (Gpu_Hal_Context_t *host,
uint16_t value)
{
uint16_t retVal = 0;
if (host->status == GPU_HAL_WRITING)
{
Gpu_Hal_Transfer8(host,value & 0xFF);
Gpu_Hal_Transfer8(host,(value >> 8) & 0xFF);
}
else
{
retVal = Gpu_Hal_Transfer8(host,0);
retVal |= (uint16_t)Gpu_Hal_Transfer8(host,0) << 8;
}
return retVal;
}
/*
* Gpu_Hal_Transfer32()
*/
uint32_t
Gpu_Hal_Transfer32 (Gpu_Hal_Context_t *host,
uint32_t value)
{
uint32_t retVal = 0;
if (host->status == GPU_HAL_WRITING)
{
Gpu_Hal_Transfer16(host,value & 0xFFFF);
Gpu_Hal_Transfer16(host,(value >> 16) & 0xFFFF);
}
else
{
retVal = Gpu_Hal_Transfer16(host,0);
retVal |= (uint32_t)Gpu_Hal_Transfer16(host,0) << 16;
}
return retVal;
}
/*
* Gpu_Hal_EndTransfer()
*/
void
Gpu_Hal_EndTransfer (Gpu_Hal_Context_t *host)
{
digitalWrite (GPIO_CS, HIGH);
host->status = GPU_HAL_OPENED;
}
/*****************************************************************************/
/*
* Gpu_Hal_Rd8()
*/
uint8_t
Gpu_Hal_Rd8 (Gpu_Hal_Context_t *host,
uint32_t addr)
{
uint8_t value = 0;
Gpu_Hal_StartTransfer(host,GPU_READ,addr);
value = Gpu_Hal_Transfer8 (host, 0);
Gpu_Hal_EndTransfer(host);
return value;
}
/*
* Gpu_Hal_Rd16()
*/
uint16_t
Gpu_Hal_Rd16 (Gpu_Hal_Context_t *host,
uint32_t addr)
{
uint16_t value = 0;
Gpu_Hal_StartTransfer(host,GPU_READ,addr);
value = Gpu_Hal_Transfer16 (host, 0);
Gpu_Hal_EndTransfer(host);
return value;
}
/*
* Gpu_Hal_Rd32()
*/
uint32_t
Gpu_Hal_Rd32 (Gpu_Hal_Context_t *host,
uint32_t addr)
{
uint32_t value = 0;
Gpu_Hal_StartTransfer(host,GPU_READ,addr);
value = Gpu_Hal_Transfer32 (host, 0);
Gpu_Hal_EndTransfer(host);
return value;
}
/*****************************************************************************/
/*
* Gpu_Hal_Wr8()
*/
void
Gpu_Hal_Wr8 (Gpu_Hal_Context_t *host,
uint32_t addr,
uint8_t v)
{
Gpu_Hal_StartTransfer(host,GPU_WRITE,addr);
Gpu_Hal_Transfer8(host,v);
Gpu_Hal_EndTransfer(host);
}
/*
* Gpu_Hal_Wr16()
*/
void
Gpu_Hal_Wr16 (Gpu_Hal_Context_t *host,
uint32_t addr,
uint16_t v)
{
Gpu_Hal_StartTransfer(host,GPU_WRITE,addr);
Gpu_Hal_Transfer16(host,v);
Gpu_Hal_EndTransfer(host);
}
/*
* Gpu_Hal_Wr32()
*/
void
Gpu_Hal_Wr32 (Gpu_Hal_Context_t *host,
uint32_t addr,
uint32_t v)
{
Gpu_Hal_StartTransfer(host,GPU_WRITE,addr);
Gpu_Hal_Transfer32(host,v);
Gpu_Hal_EndTransfer(host);
}
/*****************************************************************************/
/*
* Gpu_HostCommand()
*/
void
Gpu_HostCommand (Gpu_Hal_Context_t *host,
uint8_t cmd)
{
digitalWrite (GPIO_CS, LOW);
SPI.transfer (cmd);
SPI.transfer (0);
SPI.transfer (0);
digitalWrite (GPIO_CS, HIGH);
}
/*
* Gpu_HostCommand_Ext3()
*/
void
Gpu_HostCommand_Ext3 (Gpu_Hal_Context_t *host,
uint32_t cmd)
{
digitalWrite (GPIO_CS, LOW);
SPI.transfer (cmd);
SPI.transfer ((cmd>>8) & 0xff);
SPI.transfer ((cmd>>16) & 0xff);
digitalWrite (GPIO_CS, HIGH);
}
/*****************************************************************************/
/*
* Gpu_Hal_Powercycle()
*/
void
Gpu_Hal_Powercycle (Gpu_Hal_Context_t *host,
bool_t up)
{
if (up)
{
digitalWrite (GPIO_PD, LOW);
Gpu_Hal_Sleep (20);
digitalWrite (GPIO_PD, HIGH);
Gpu_Hal_Sleep (20);
}
else
{
digitalWrite (GPIO_PD, HIGH);
Gpu_Hal_Sleep (20);
digitalWrite (GPIO_PD, LOW);
Gpu_Hal_Sleep (20);
}
}
/*
* Gpu_Hal_Sleep()
*/
void
Gpu_Hal_Sleep (uint32_t ms)
{
delay (ms);
}
/*****************************************************************************/
/*
* Gpu_Hal_WrMem()
*/
void
Gpu_Hal_WrMem (Gpu_Hal_Context_t *host,
uint32_t addr,
const uint8_t *buffer,
uint32_t length)
{
Gpu_Hal_StartTransfer(host,GPU_WRITE,addr);
while (length--)
{
Gpu_Hal_Transfer8(host,*buffer);
buffer++;
}
Gpu_Hal_EndTransfer(host);
}
/*
* Gpu_Hal_RdMem()
*/
void
Gpu_Hal_RdMem (Gpu_Hal_Context_t *host,
uint32_t addr,
uint8_t *buffer,
uint32_t length)
{
Gpu_Hal_StartTransfer(host,GPU_READ,addr);
while (length--)
{
*buffer = Gpu_Hal_Transfer8(host,0);
buffer++;
}
Gpu_Hal_EndTransfer(host);
}
/*
* Gpu_Hal_DLSwap()
*
* API to check the status of previous DLSWAP and perform DLSWAP of new DL.
* Check for the status of previous DLSWAP and if still not done wait for
* few ms and check again
*/
void
Gpu_Hal_DLSwap (Gpu_Hal_Context_t *host,
uint8_t DL_Swap_Type)
{
uint8_t Swap_Type = DLSWAP_FRAME,Swap_Done = DLSWAP_FRAME;
if (DL_Swap_Type == DLSWAP_LINE)
Swap_Type = DLSWAP_LINE;
/* perform a new DL swap */
Gpu_Hal_Wr8(host,REG_DLSWAP,Swap_Type);
/* wait till the swap is done */
while(Swap_Done)
{
Swap_Done = Gpu_Hal_Rd8(host,REG_DLSWAP);
if(DLSWAP_DONE != Swap_Done)
Gpu_Hal_Sleep(1);
}
}
/*
* Gpu_Hal_ResetDLBuffer()
*/
void
Gpu_Hal_ResetDLBuffer(Gpu_Hal_Context_t *host)
{
host->dl_buff_wp = 0;
}
/*****************************************************************************/
void
Gpu_ClockSelect (Gpu_Hal_Context_t *host,
GPU_PLL_SOURCE_T pllsource)
{
Gpu_HostCommand(host,pllsource);
}
void
Gpu_PLL_FreqSelect (Gpu_Hal_Context_t *host,
GPU_PLL_FREQ_T freq)
{
Gpu_HostCommand(host,freq);
}
void
Gpu_PowerModeSwitch (Gpu_Hal_Context_t *host,
GPU_POWER_MODE_T pwrmode)
{
Gpu_HostCommand(host,pwrmode);
}
void
Gpu_CoreReset (Gpu_Hal_Context_t *host)
{
Gpu_HostCommand(host,0x68);
}
/*****************************************************************************/
#if (defined(FT81X_ENABLE)) || (defined(BT81X_ENABLE))
/*
* Gpu_81X_SelectSysCLK()
*
* This API can only be called when PLL is stopped (SLEEP mode).
* For compatibility, set frequency to the GPU_12MHZ option in the
* GPU_SETPLLSP1_T table.
*/
void
Gpu_81X_SelectSysCLK (Gpu_Hal_Context_t *host,
GPU_81X_PLL_FREQ_T freq)
{
if(GPU_SYSCLK_72M == freq)
Gpu_HostCommand_Ext3(host, (uint32_t)0x61 | (0x40 << 8) | (0x06 << 8));
else if(GPU_SYSCLK_60M == freq)
Gpu_HostCommand_Ext3(host, (uint32_t)0x61 | (0x40 << 8) | (0x05 << 8));
else if(GPU_SYSCLK_48M == freq)
Gpu_HostCommand_Ext3(host, (uint32_t)0x61 | (0x40 << 8) | (0x04 << 8));
else if(GPU_SYSCLK_36M == freq)
Gpu_HostCommand_Ext3(host, (uint32_t)0x61 | (0x03 << 8));
else if(GPU_SYSCLK_24M == freq)
Gpu_HostCommand_Ext3(host, (uint32_t)0x61 | (0x02 << 8));
else if(GPU_SYSCLK_DEFAULT == freq)
Gpu_HostCommand_Ext3(host, 0x61);
}
/*
* Gpu_81X_PowerOffComponents()
*
* Power down or up ROMs and ADCs. Specified one or more elements in the
* GPU_81X_ROM_AND_ADC_T table to power down, unspecified elements will be
* powered up. The application must retain the state of the ROMs and ADCs
* as they're not readable from the device.
*/
void
Gpu_81X_PowerOffComponents (Gpu_Hal_Context_t *host,
uint8_t val)
{
Gpu_HostCommand_Ext3(host, (uint32_t)0x49 | (val<<8));
}
/*
* Gpu_81X_PadDriveStrength()
*
* This API sets the current strength of supported GPIO/IO group(s).
*/
void
Gpu_81X_PadDriveStrength (Gpu_Hal_Context_t *host,
GPU_81X_GPIO_DRIVE_STRENGTH_T strength,
GPU_81X_GPIO_GROUP_T group)
{
Gpu_HostCommand_Ext3(host, (uint32_t)0x70 | (group << 8) | (strength << 8));
}
/*
* Gpu_81X_ResetActive()
*
* This API will hold the system reset active, Gpu_81X_ResetRemoval() must be
* called to release the system reset.
*/
void
Gpu_81X_ResetActive (Gpu_Hal_Context_t *host)
{
Gpu_HostCommand_Ext3(host, GPU_81X_RESET_ACTIVE);
}
/*
* Gpu_81X_ResetRemoval()
*
* This API will release the system reset, and the system will exit reset and
* behave as after POR, settings done through SPI will not be affected.
*/
void
Gpu_81X_ResetRemoval (Gpu_Hal_Context_t *host)
{
Gpu_HostCommand_Ext3(host, GPU_81X_RESET_REMOVAL);
}
/*
* Gpu_Hal_SetSPI()
*
* Set EVE spi communication mode
*/
int16_t
Gpu_Hal_SetSPI (Gpu_Hal_Context_t *host,
GPU_SPI_NUMCHANNELS_T numchnls,
GPU_SPI_NUMDUMMYBYTES numdummy)
{
uint8_t writebyte = 0;
if((numchnls > GPU_SPI_QUAD_CHANNEL) ||
(numdummy > GPU_SPI_TWODUMMY) ||
(numdummy < GPU_SPI_ONEDUMMY))
return -1;
/* swicth EVE to multi channel SPI mode */
writebyte = numchnls;
if(numdummy == GPU_SPI_TWODUMMY)
writebyte |= SPI_TWO_DUMMY_BYTE;
Gpu_Hal_Wr8(host, REG_SPI_WIDTH, writebyte);
/* FT81x swicthed to dual/quad mode, now update global HAL context */
host->spichannel = numchnls;
host->spinumdummy = numdummy;
return 0;
}
#endif /* (FT81X_ENABLE) || (BT81X_ENABLE) */
/*****************************************************************************/
/*
* Gpu_Hal_Updatecmdfifo()
*
* Function to update global HAL context variable cmd_fifo_wp pointer and write
* to REG_CMD_WRITE to indicate GPU to start processing new commands in RAM_CMD
*/
void
Gpu_Hal_Updatecmdfifo (Gpu_Hal_Context_t *host,
uint32_t count)
{
host->cmd_fifo_wp = (host->cmd_fifo_wp + count) & FIFO_SIZE_MASK;
/* 4 byte alignment */
host->cmd_fifo_wp = (host->cmd_fifo_wp + 3) & FIFO_BYTE_ALIGNMENT_MASK;
Gpu_Hal_Wr16(host,REG_CMD_WRITE,host->cmd_fifo_wp);
}
/*
* Gpu_Cmdfifo_Freespace()
*
* Function to compute available freespace in RAM_CMD. RAM_CMD is 4K in size.
* REG_CMD_READ reg provides command buffer read pointer.
*/
uint16_t
Gpu_Cmdfifo_Freespace (Gpu_Hal_Context_t *host)
{
uint16_t fullness,retval;
fullness = (host->cmd_fifo_wp-Gpu_Hal_Rd16(host,REG_CMD_READ))&FIFO_SIZE_MASK;
retval = (CMD_FIFO_SIZE - 4) - fullness;
return (retval);
}
/*
* Gpu_Hal_WrCmdBuf()
*
* Continuous write to RAM_CMD with wait with start address as
* host->cmd_fifo_wp + RAM_CMD. FT81x RAM_CMD size is 4K (4096 bytes).
* Hence one SPI write is adequate.
*/
void
Gpu_Hal_WrCmdBuf (Gpu_Hal_Context_t *host,
uint8_t *buffer,
uint32_t count)
{
uint32_t length =0, SizeTransfered = 0,availablefreesize;
do
{
length = count;
availablefreesize = Gpu_Cmdfifo_Freespace(host);
if (length > availablefreesize)
length = availablefreesize;
Gpu_Hal_CheckCmdBuffer(host,length);
Gpu_Hal_StartCmdTransfer(host,GPU_WRITE,length);
SizeTransfered = 0;
while (length--)
{
Gpu_Hal_Transfer8(host,*buffer);
buffer++;
SizeTransfered ++;
}
buffer += SizeTransfered;
length = SizeTransfered;
Gpu_Hal_EndTransfer(host);
Gpu_Hal_Updatecmdfifo(host,length);
Gpu_Hal_WaitCmdfifo_empty(host);
count -= length;
} while (count > 0);
}
/*
* Gpu_Hal_CheckCmdBuffer()
*
* Blocking function call. Blocks until "count" number of bytes gets available
* in RAM_CMD.
*/
void
Gpu_Hal_CheckCmdBuffer (Gpu_Hal_Context_t *host,
uint32_t count)
{
uint16_t getfreespace;
do
{
getfreespace = Gpu_Cmdfifo_Freespace(host);
} while(getfreespace < count);
}
/*
* Gpu_Hal_WaitCmdfifo_empty()
*
* Blocking function call. Blocks until all commands in RAM_CMD are executed and
* it is fully empty.
*/
void
Gpu_Hal_WaitCmdfifo_empty (Gpu_Hal_Context_t *host)
{
while(Gpu_Hal_Rd16(host,REG_CMD_READ) != Gpu_Hal_Rd16(host,REG_CMD_WRITE));
host->cmd_fifo_wp = Gpu_Hal_Rd16(host,REG_CMD_WRITE);
}
/*
* Gpu_Hal_WrCmdBuf_nowait()
*
* Continuous write to RAM_CMD with no wait.
*/
void
Gpu_Hal_WrCmdBuf_nowait (Gpu_Hal_Context_t *host,
uint8_t *buffer,
uint32_t count)
{
uint32_t length =0, SizeTransfered = 0 , availablefreesize;
do
{
length = count;
availablefreesize = Gpu_Cmdfifo_Freespace(host);
if (length > availablefreesize)
length = availablefreesize;
Gpu_Hal_CheckCmdBuffer(host,length);
Gpu_Hal_StartCmdTransfer(host,GPU_WRITE,length);
SizeTransfered = 0;
while (length--)
{
Gpu_Hal_Transfer8(host,*buffer);
buffer++;
SizeTransfered ++;
}
buffer += SizeTransfered;
length = SizeTransfered;
Gpu_Hal_EndTransfer(host);
Gpu_Hal_Updatecmdfifo(host,length);
count -= length;
} while (count > 0);
}
/*
* Gpu_Hal_WaitCmdfifo_empty_status()
*/
uint8_t
Gpu_Hal_WaitCmdfifo_empty_status (Gpu_Hal_Context_t *host)
{
if(Gpu_Hal_Rd16(host,REG_CMD_READ) != Gpu_Hal_Rd16(host,REG_CMD_WRITE))
{
return 0;
}
else
{
host->cmd_fifo_wp = Gpu_Hal_Rd16(host,REG_CMD_WRITE);
return 1;
}
}
/*
* Gpu_Hal_WaitLogo_Finish()
*/
void
Gpu_Hal_WaitLogo_Finish (Gpu_Hal_Context_t *host)
{
int16_t cmdrdptr,cmdwrptr;
do
{
cmdrdptr = Gpu_Hal_Rd16(host,REG_CMD_READ);
cmdwrptr = Gpu_Hal_Rd16(host,REG_CMD_WRITE);
} while ((cmdwrptr != cmdrdptr) || (cmdrdptr != 0));
host->cmd_fifo_wp = 0;
}
/*
* Gpu_Hal_ResetCmdFifo()
*/
void
Gpu_Hal_ResetCmdFifo (Gpu_Hal_Context_t *host)
{
host->cmd_fifo_wp = 0;
}
/*
* Gpu_Hal_WrCmd32()
*/
void
Gpu_Hal_WrCmd32 (Gpu_Hal_Context_t *host,
uint32_t cmd)
{
Gpu_Hal_CheckCmdBuffer(host,sizeof(cmd));
Gpu_Hal_Wr32(host,RAM_CMD + host->cmd_fifo_wp,cmd);
Gpu_Hal_Updatecmdfifo(host,sizeof(cmd));
}
/*****************************************************************************/
/*
* Fifo_Init()
*
* Init all the parameters of fifo buffer.
*/
void
Fifo_Init (Fifo_t *pFifo,
uint32_t StartAddress,
uint32_t Length,
uint32_t HWReadRegAddress,
uint32_t HWWriteRegAddress)
{
/* update the context parameters */
pFifo->fifo_buff = StartAddress;
pFifo->fifo_len = Length;
pFifo->fifo_rp = pFifo->fifo_wp = 0;
/* update the hardware register addresses - specific to FT800 series chips */
pFifo->HW_Read_Reg = HWReadRegAddress;
pFifo->HW_Write_Reg = HWWriteRegAddress;
}
/*
* Fifo_Update()
*
* Update both the read and write pointers.
*/
void
Fifo_Update (Gpu_Hal_Context_t *host,
Fifo_t *pFifo)
{
pFifo->fifo_rp = Gpu_Hal_Rd32(host,pFifo->HW_Read_Reg);
}
/*
* Fifo_Write()
*
* Just write and update the write register.
*/
uint32_t
Fifo_Write (Gpu_Hal_Context_t *host,
Fifo_t *pFifo,
uint8_t *buffer,
uint32_t NumbytetoWrite)
{
uint32_t FreeSpace = Fifo_GetFreeSpace(host,pFifo),TotalBytes = NumbytetoWrite;
if(NumbytetoWrite > FreeSpace)
{
/* update the read pointer and get the free space */
Fifo_Update(host,pFifo);
FreeSpace = Fifo_GetFreeSpace(host,pFifo);
if(NumbytetoWrite > FreeSpace)
TotalBytes = FreeSpace;
}
/* sanity check */
if(TotalBytes <= 0)
return 0; /* error condition */
/* check for the loopback conditions */
if(pFifo->fifo_wp + TotalBytes >= pFifo->fifo_len)
{
uint32_t partialchunk, secpartialchunk;
partialchunk = pFifo->fifo_len - pFifo->fifo_wp;
secpartialchunk = TotalBytes - partialchunk;
Gpu_Hal_WrMem(host,pFifo->fifo_buff + pFifo->fifo_wp,buffer,partialchunk);
if(secpartialchunk > 0)
Gpu_Hal_WrMem(host,pFifo->fifo_buff,buffer + partialchunk,secpartialchunk);
pFifo->fifo_wp = secpartialchunk;
}
else
{
Gpu_Hal_WrMem(host,pFifo->fifo_buff + pFifo->fifo_wp,buffer,TotalBytes);
pFifo->fifo_wp += TotalBytes;
}
/* update the write pointer address in write register */
Gpu_Hal_Wr32(host,pFifo->HW_Write_Reg,pFifo->fifo_wp);
return TotalBytes;
}
/*
* Fifo_Write32()
*
* Just write one word and update the write register
*/
void
Fifo_Write32 (Gpu_Hal_Context_t *host,
Fifo_t *pFifo,
uint32_t WriteWord)
{
Fifo_WriteWait(host,pFifo,(uint8_t *)&WriteWord,4);
}
/*
* Fifo_WriteWait()
*
* Write and wait for the fifo to be empty. Handle cases even if the Numbytes
* are more than freespace.
*/
void
Fifo_WriteWait (Gpu_Hal_Context_t *host,
Fifo_t *pFifo,
uint8_t *buffer,
uint32_t Numbyte)
{
uint32_t TotalBytes = Numbyte,currchunk = 0,FreeSpace;
uint8_t *pbuff = buffer;
/* blocking call, manage to check for the error case and break in case of error */
while(TotalBytes > 0)
{
currchunk = TotalBytes;
FreeSpace = Fifo_GetFreeSpace(host,pFifo);
if(currchunk > FreeSpace)
currchunk = FreeSpace;
Fifo_Write(host,pFifo,pbuff,currchunk);
pbuff += currchunk;
TotalBytes -= currchunk;
}
}
/*
* Fifo_GetFreeSpace()
*
* Get the free space in the fifo - make sure the return value is maximum
* of (LENGTH - 4).
*/
uint32_t
Fifo_GetFreeSpace (Gpu_Hal_Context_t *host,
Fifo_t *pFifo)
{
uint32_t FreeSpace = 0;
Fifo_Update(host,pFifo);
if(pFifo->fifo_wp >= pFifo->fifo_rp)
FreeSpace = pFifo->fifo_len - pFifo->fifo_wp + pFifo->fifo_rp;
else
FreeSpace = pFifo->fifo_rp - pFifo->fifo_wp;
if(FreeSpace >= 4)
FreeSpace -= 4;
return FreeSpace;